definition of ugly tokens

This commit is contained in:
Waldemar Celes 1994-10-18 12:30:29 -02:00
parent 25010f8e09
commit 3386e3c1fb
1 changed files with 24 additions and 0 deletions

24
ugly.h Normal file
View File

@ -0,0 +1,24 @@
enum
{
U_and=128,
U_do,
U_else,
U_elseif,
U_end,
U_function,
U_if,
U_local,
U_nil,
U_not,
U_or,
U_repeat,
U_return,
U_then,
U_until,
U_while,
U_eq = '='+128,
U_le = '<'+128,
U_ge = '>'+128,
U_ne = '~'+128,
U_sc = '.'+128
};