mirror of
https://github.com/ksherlock/mpw.git
synced 2024-10-31 23:09:44 +00:00
21 lines
900 B
C
21 lines
900 B
C
#define tkTYPEDEF 1
|
|
#define tkIDENTIFIER 2
|
|
#define tkSTRUCT 3
|
|
#define tkLBRACE 4
|
|
#define tkRBRACE 5
|
|
#define tkSEMI 6
|
|
#define tkTEMPLATE 7
|
|
#define tkLBRACKET 8
|
|
#define tkINTEGER 9
|
|
#define tkRBRACKET 10
|
|
#define tkVOLATILE 11
|
|
#define tkSIGNED 12
|
|
#define tkUNSIGNED 13
|
|
#define tkCHAR 14
|
|
#define tkSHORT 15
|
|
#define tkLONG 16
|
|
#define tkTYPECODE 17
|
|
#define tkVOID 18
|
|
#define tkSTAR 19
|
|
#define tkINT 20
|