You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
323 B
15 lines
323 B
#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
|
|
|