16 lines
411 B
C++
16 lines
411 B
C++
//---------------------------------------------------------------------------
|
|
#ifndef CommonCheckH
|
|
#define CommonCheckH
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include <string>
|
|
|
|
struct TOKEN;
|
|
|
|
std::string FileLine(TOKEN *tok);
|
|
|
|
void ReportErr(const std::string errmsg);
|
|
|
|
//---------------------------------------------------------------------------
|
|
#endif
|