Staging
v0.5.1
https://github.com/git/git
Revision e267c2f6f0784e242883b7d3fe5f36ef63d6950d authored by Junio C Hamano on 15 November 2006, 06:11:26 UTC, committed by Junio C Hamano on 15 November 2006, 06:11:26 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 2a54323
Raw File
Tip revision: e267c2f6f0784e242883b7d3fe5f36ef63d6950d authored by Junio C Hamano on 15 November 2006, 06:11:26 UTC
GIT 1.4.4
Tip revision: e267c2f
exec_cmd.h
#ifndef __GIT_EXEC_CMD_H_
#define __GIT_EXEC_CMD_H_

extern void git_set_exec_path(const char *exec_path);
extern const char* git_exec_path(void);
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