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