aboutsummaryrefslogtreecommitdiff
path: root/ugly.h
diff options
context:
space:
mode:
Diffstat (limited to 'ugly.h')
-rw-r--r--ugly.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/ugly.h b/ugly.h
index 6c4b873c..3938f639 100644
--- a/ugly.h
+++ b/ugly.h
@@ -1,5 +1,15 @@
1enum 1/*
2{ 2** ugly.h
3** TecCGraf - PUC-Rio
4** $Id: $
5*/
6
7#ifndef ugly_h
8#define ugly_h
9
10/* This enum must have the same order of the array 'reserved' in lex.c */
11
12enum {
3 U_and=128, 13 U_and=128,
4 U_do, 14 U_do,
5 U_else, 15 U_else,
@@ -22,3 +32,5 @@ enum
22 U_ne = '~'+128, 32 U_ne = '~'+128,
23 U_sc = '.'+128 33 U_sc = '.'+128
24}; 34};
35
36#endif