Inside gutils.c we have line 188 that looks like a prototype.
gutils.c
static gchar *inner_find_program_in_path (const gchar *program);
Is there a definition for this function?
(Motivation: I’m working on ticket 957, and the code for this function references inner_find_program_in_path().)
inner_find_program_in_path()
Thank you.
Searching through that file for the symbol name finds this definition which is only available on Windows, which makes sense because it’s only called in a Windows-specific version of g_find_program_in_path().
g_find_program_in_path()
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.