blob: a892355c8212298130fb3925c6cba352ed6999b6 [file] [log] [blame]
Junio C Hamanoe0173ad2007-04-28 23:38:52 -07001#ifndef GIT_EXEC_CMD_H
2#define GIT_EXEC_CMD_H
Michal Ostrowski77cb17e2006-01-10 21:12:17 -05003
Scott R Parish384df832007-10-27 01:36:51 -07004extern void git_set_argv_exec_path(const char *exec_path);
Michal Ostrowski77cb17e2006-01-10 21:12:17 -05005extern const char* git_exec_path(void);
Scott R Parish511707d2007-10-28 04:17:20 -07006extern void setup_path(const char *);
Junio C Hamano9201c702006-03-05 02:47:29 -08007extern int execv_git_cmd(const char **argv); /* NULL terminated */
8extern int execl_git_cmd(const char *cmd, ...);
Michal Ostrowski77cb17e2006-01-10 21:12:17 -05009
10
Junio C Hamanoe0173ad2007-04-28 23:38:52 -070011#endif /* GIT_EXEC_CMD_H */