/* $Id: parsefile.h,v 1.1.1.1 1997/02/21 21:04:17 sverrehu Exp $ */ #ifndef PARSEFILE_H #define PARSEFILE_H /* functions that may be called from everywhere */ int pfParseFile(const char *filename, int (*func)(int argc, char *argv[]), int noFileOk); int pfStrCaseCmp(const char *s1, const char *s2); /* functions to be used by the callback function _only_ */ int pfGetCurrentLine(void); const char *pfGetCurrentFile(void); int pfGetBooleanValue(const char *s); #endif