10 lines
80 B
C
10 lines
80 B
C
|
|
|
|
struct LexerToken {
|
|
char* sval;
|
|
float fval;
|
|
};
|
|
|
|
#define YYSTYPE LexerToken
|
|
|