2007-04-29 14:38:52 +08:00
|
|
|
#ifndef GIT_EXEC_CMD_H
|
|
|
|
#define GIT_EXEC_CMD_H
|
2006-01-11 10:12:17 +08:00
|
|
|
|
2007-10-27 16:36:51 +08:00
|
|
|
extern void git_set_argv_exec_path(const char *exec_path);
|
2009-01-18 20:00:10 +08:00
|
|
|
extern const char *git_extract_argv0_path(const char *path);
|
|
|
|
extern const char *git_exec_path(void);
|
2008-07-22 03:19:52 +08:00
|
|
|
extern void setup_path(void);
|
2008-07-28 13:50:27 +08:00
|
|
|
extern const char **prepare_git_cmd(const char **argv);
|
2006-03-05 18:47:29 +08:00
|
|
|
extern int execv_git_cmd(const char **argv); /* NULL terminated */
|
2013-07-19 04:02:12 +08:00
|
|
|
LAST_ARG_MUST_BE_NULL
|
2006-03-05 18:47:29 +08:00
|
|
|
extern int execl_git_cmd(const char *cmd, ...);
|
2014-11-25 03:33:54 +08:00
|
|
|
extern char *system_path(const char *path);
|
2006-01-11 10:12:17 +08:00
|
|
|
|
2007-04-29 14:38:52 +08:00
|
|
|
#endif /* GIT_EXEC_CMD_H */
|