aboutsummaryrefslogtreecommitdiffstats
path: root/run-command.c
diff options
context:
space:
mode:
authorPranit Bauva <pranit.bauva@gmail.com>2021-09-13 19:39:01 +0200
committerJunio C Hamano <gitster@pobox.com>2021-09-13 13:37:37 -0700
commit3f36e6f30c5ee8d337dffa65c487080b87b29030 (patch)
tree89b4358fa7b169acd513648e8740c5a0e77182e0 /run-command.c
parent5fe973b9122903ed540c468b8fb347ab0b6ca6ff (diff)
downloadgit-3f36e6f30c5ee8d337dffa65c487080b87b29030.tar.gz
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>
Diffstat (limited to 'run-command.c')
-rw-r--r--run-command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-command.c b/run-command.c
index f72e72cce7..da02553f44 100644
--- a/run-command.c
+++ b/run-command.c
@@ -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;