#ifndef INIT_H #define INIT_H #ifndef YY_TYPEDEF_YY_SCANNER_T #define YY_TYPEDEF_YY_SCANNER_T typedef void* yyscan_t; #endif #include "deptree.h" int ParseConfigFile(const char* config); int RegisterArifmeticFunctions(); int BuildDepTree(DepTree* deptree, UsedType& used); int CheckFunctions(); void DumpConfig(); #endif