mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
16 lines
219 B
C
16 lines
219 B
C
|
|
/*
|
|
* Reserved word list
|
|
*/
|
|
extern RESERVED_WORD reserved_words[];
|
|
|
|
/*
|
|
* Operator list
|
|
*/
|
|
extern RESERVED_OPERATOR reserved_operators[];
|
|
|
|
/*
|
|
* Control directives list
|
|
*/
|
|
extern RESERVED_WORD control_directives[];
|