1#ifndef GIT_EXEC_CMD_H2#define GIT_EXEC_CMD_H34extern void git_set_argv_exec_path(const char *exec_path);5extern void git_set_argv0_path(const char *path);6extern const char* git_exec_path(void);7extern void setup_path(void);8extern int execv_git_cmd(const char **argv); /* NULL terminated */9extern int execl_git_cmd(const char *cmd, ...);10extern const char *system_path(const char *path);1112#endif /* GIT_EXEC_CMD_H */