Skip to content
Snippets Groups Projects
findfile.h 364 B
#ifndef _FINDFILE_H
#define _FINDFILE_H

#ifdef __cplusplus
extern "C" {
#endif

extern char **getfiledirs(void);
extern char *findfile( char *superfile, char *fname );
extern void filedirs( char **dirs );

extern int fgetns(FILE *, int nshort, short *sp, int binary);
extern int fgetni(FILE *, int nint, int *ip, int binary);

#ifdef __cplusplus
}
#endif

#endif