#ifndef _LLP_SUPPORT_H_ #define _LLP_SUPPORT_H_ #include #ifdef __cplusplus extern "C" { #endif int LLP_GetMoreChars(char *buffer, int MAX_CHARS); int LLPparse(); /* declare the automatically generated bison output function */ int LLPlex(); /* ditto for the flex output */ void LLPerror(const char *message); void LLPrestart(FILE *f); /* flex intenral function for restarting */ #include "LowLevelParser.tab.h" void LLP_SetErrorMessage(const char *message, YYLTYPE loc); #ifdef __cplusplus } #endif #endif // _LLP_SUPPORT_H_