1#ifndef GIT_EXEC_CMD_H2#define GIT_EXEC_CMD_H34extern void git_set_exec_path(const char *exec_path);5extern const char* git_exec_path(void);6extern int execv_git_cmd(const char **argv); /* NULL terminated */7extern int execl_git_cmd(const char *cmd, ...);8910#endif /* GIT_EXEC_CMD_H */