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