run-command: make exists_in_PATH() non-static
Remove the `static` keyword from `exists_in_PATH()` function and declare the function in `run-command.h` file. The function will be used in bisect_visualize() in a later commit. Mentored by: Christian Couder <chriscool@tuxfamily.org> Mentored by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Tanushree Tumane <tanushreetumane@gmail.com> Signed-off-by: Miriam Rubio <mirucam@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
5fe973b912
commit
3f36e6f30c
@ -210,9 +210,9 @@ static char *locate_in_PATH(const char *file)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int exists_in_PATH(const char *file)
|
||||
int exists_in_PATH(const char *command)
|
||||
{
|
||||
char *r = locate_in_PATH(file);
|
||||
char *r = locate_in_PATH(command);
|
||||
int found = r != NULL;
|
||||
free(r);
|
||||
return found;
|
||||
|
||||
Reference in New Issue
Block a user