Initial commit of libpnd 0.0.5 so we cna restart with GIT
[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 char *pnd_locate_filename ( char *searchpath, char *filename );
12
13 #ifdef __cplusplus
14 } /* "C" */
15 #endif
16
17 #endif