8 extern char * File_ReadAll (FILE *) ;
9 extern bool File_FindInPath (char * out
, int outSz
,
10 const char * path
, const char * basename
) ;
12 #define streq(S1,S2) (strcmp ((S1), (S2)) == 0)
13 #define streql(S1,S2,L) (strncmp ((S1), (S2), (L)) == 0)
15 extern char * File_ReadOutputFromCommand (const char * cmd
) ;