Definition for inner_find_program_in_path (original) (raw)

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.

pwithnall (Philip Withnall) May 30, 2025, 8:19pm 2

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