Revision 460abee5cd7d0cb06e5f424b1dae793af4e66cbb authored by Stephan Beyer on 12 July 2008, 15:46:59 UTC, committed by Junio C Hamano on 13 July 2008, 19:46:18 UTC
Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 329636b
Raw File
exec_cmd.h
#ifndef GIT_EXEC_CMD_H
#define GIT_EXEC_CMD_H

extern void git_set_argv_exec_path(const char *exec_path);
extern const char* git_exec_path(void);
extern void setup_path(const char *);
extern int execv_git_cmd(const char **argv); /* NULL terminated */
extern int execl_git_cmd(const char *cmd, ...);


#endif /* GIT_EXEC_CMD_H */
back to top