Revision caa7dac163f7f7fc827da6fd4a5aba259a50e1ab authored by Junio C Hamano on 25 October 2009, 22:34:27 UTC, committed by Junio C Hamano on 25 October 2009, 22:34:27 UTC
* jk/maint-1.6.3-ls-files-no-ignore-cached:
  ls-files: excludes should not impact tracked files
2 parent s 1c92a08 + b5227d8
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