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);
|
2006-01-11 02:12:17 +00:00
|
|
|
extern const char* git_exec_path(void);
|
2007-10-28 11:17:20 +00:00
|
|
|
extern void setup_path(const char *);
|
2006-03-05 10:47:29 +00:00
|
|
|
extern int execv_git_cmd(const char **argv); /* NULL terminated */
|
|
|
|
extern int execl_git_cmd(const char *cmd, ...);
|
2006-01-11 02:12:17 +00:00
|
|
|
|
|
|
|
|
2007-04-29 06:38:52 +00:00
|
|
|
#endif /* GIT_EXEC_CMD_H */
|