Definition for inner_find_program_in_path

Inside gutils.c we have line 188 that looks like a prototype.

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().)

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().

1 Like