source: git/branches/dmik/exec_cmd.h@ 782

Last change on this file since 782 was 782, checked in by dmik, 11 years ago

git: Merge version 2.0.0 from vendor to dmik branch.

File size: 509 bytes
Line 
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_extract_argv0_path(const char *path);
6extern const char *git_exec_path(void);
7extern void setup_path(void);
8extern const char **prepare_git_cmd(const char **argv);
9extern int execv_git_cmd(const char **argv); /* NULL terminated */
10LAST_ARG_MUST_BE_NULL
11extern int execl_git_cmd(const char *cmd, ...);
12extern const char *system_path(const char *path);
13
14#endif /* GIT_EXEC_CMD_H */
Note: See TracBrowser for help on using the repository browser.