summaryrefslogtreecommitdiff
path: root/ugly.h
blob: 3938f6392182c179a1d4d0acbe9f5ae4f556c749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
** ugly.h
** TecCGraf - PUC-Rio
** $Id: $
*/

#ifndef ugly_h
#define ugly_h

/* This enum must have the same order of the array 'reserved' in lex.c */

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
};

#endif