20 lines
481 B
C++
20 lines
481 B
C++
//---------------------------------------------------------------------------
|
|
#ifndef CommonCheckH
|
|
#define CommonCheckH
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include <string>
|
|
|
|
struct TOKEN;
|
|
|
|
std::string FileLine(TOKEN *tok);
|
|
|
|
void ReportErr(const std::string errmsg);
|
|
|
|
|
|
bool IsName(const char str[]);
|
|
bool IsNumber(const char str[]);
|
|
|
|
//---------------------------------------------------------------------------
|
|
#endif
|