| 1 | #ifndef GIT_EXEC_CMD_H |
| 2 | #define GIT_EXEC_CMD_H |
| 3 | |
| 4 | struct argv_array; |
| 5 | |
| 6 | void git_set_exec_path(const char *exec_path); |
| 7 | void git_resolve_executable_dir(const char *path); |
| 8 | const char *git_exec_path(void); |
| 9 | void setup_path(void); |
| 10 | const char **prepare_git_cmd(struct argv_array *out, const char **argv); |
| 11 | int execv_git_cmd(const char **argv); /* NULL terminated */ |
| 12 | LAST_ARG_MUST_BE_NULL |
| 13 | int execl_git_cmd(const char *cmd, ...); |
| 14 | char *system_path(const char *path); |
| 15 | |
| 16 | #endif /* GIT_EXEC_CMD_H */ |