Revision 3bb8d69cddbcad4bd4ae3d1281c42c1aeb297355 authored by Junio C Hamano on 21 December 2011, 19:42:44 UTC, committed by Junio C Hamano on 21 December 2011, 19:42:44 UTC
* cn/maint-lf-to-crlf-filter:
  lf_to_crlf_filter(): tell the caller we added "\n" when draining
  convert: track state in LF-to-CRLF filter
2 parent s 1a7bd4f + 87afe9a
Raw File
exec_cmd.h
#ifndef GIT_EXEC_CMD_H
#define GIT_EXEC_CMD_H

extern void git_set_argv_exec_path(const char *exec_path);
extern const char *git_extract_argv0_path(const char *path);
extern const char *git_exec_path(void);
extern void setup_path(void);
extern const char **prepare_git_cmd(const char **argv);
extern int execv_git_cmd(const char **argv); /* NULL terminated */
extern int execl_git_cmd(const char *cmd, ...);
extern const char *system_path(const char *path);

#endif /* GIT_EXEC_CMD_H */
back to top