#ifndef _SCANTYPE_H_ #define _SCANTYPE_H_ // // SCANNER TOKENDATA // struct TokenData { int tokenclass; int linenum; char *tokenstr; bool bvalue; }; #endif