Lots of changes/additions for minimenu
[pandora-libraries.git] / include / pnd_locate.h
1
2 #ifndef h_pnd_locate_h
3 #define h_pnd_locate_h
4
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8
9 // given a filename and a searchpath, return the first path it is found at (or NULL if not found)
10 // Returned path includes filename.
11 // WARNING: Returned path will be over-written, you must duplicate it!
12 char *pnd_locate_filename ( char *searchpath, char *filename );
13
14 #ifdef __cplusplus
15 } /* "C" */
16 #endif
17
18 #endif