mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
run-command: expose is_executable function
Move the logic for 'is_executable()' from help.c to run_command.c and expose it so that callers from outside help.c can access the function. This is to enable run-command to be able to query if a file is executable in a future patch. Signed-off-by: Brandon Williams <bmwill@google.com> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
45afb1ca9c
commit
38124a40e4
@@ -51,6 +51,7 @@ struct child_process {
|
||||
#define CHILD_PROCESS_INIT { NULL, ARGV_ARRAY_INIT, ARGV_ARRAY_INIT }
|
||||
void child_process_init(struct child_process *);
|
||||
void child_process_clear(struct child_process *);
|
||||
extern int is_executable(const char *name);
|
||||
|
||||
int start_command(struct child_process *);
|
||||
int finish_command(struct child_process *);
|
||||
|
||||
Reference in New Issue
Block a user