1 /* $Id: parsefile.h,v 1.1.1.1 1997/02/21 21:04:17 sverrehu Exp $ */
2 #ifndef PARSEFILE_H
3 #define PARSEFILE_H
4 
5 /* functions that may be called from everywhere */
6 int pfParseFile(const char *filename,
7 		int (*func)(int argc, char *argv[]),
8 		int noFileOk);
9 int pfStrCaseCmp(const char *s1, const char *s2);
10 
11 /* functions to be used by the callback function _only_ */
12 int pfGetCurrentLine(void);
13 const char *pfGetCurrentFile(void);
14 int pfGetBooleanValue(const char *s);
15 
16 #endif
17