exec_cmd.hon commit Fix the wrong output of `git-show v1.3.0~155^2~4` in documentation. (71a5099)
   1#ifndef GIT_EXEC_CMD_H
   2#define GIT_EXEC_CMD_H
   3
   4extern void git_set_argv_exec_path(const char *exec_path);
   5extern const char* git_exec_path(void);
   6extern void setup_path(const char *);
   7extern int execv_git_cmd(const char **argv); /* NULL terminated */
   8extern int execl_git_cmd(const char *cmd, ...);
   9
  10
  11#endif /* GIT_EXEC_CMD_H */