Annotation of OpenXM_contrib2/asir2000/parse/kwd.c, Revision 1.1.1.1
1.1 noro 1: /* $OpenXM: OpenXM/src/asir99/parse/kwd.c,v 1.1.1.1 1999/11/10 08:12:34 noro Exp $ */
2: #include "ca.h"
3: #include "parse.h"
4: #include "y.tab.h"
5:
6: struct oTKWD kwd[] = {
7: {"for",FOR},
8: {"while",WHILE},
9: {"do",DO},
10: {"if",IF},
11: {"else",ELSE},
12: {"break",BREAK},
13: {"continue",CONTINUE},
14: {"return",RETURN},
15: {"def",FDEF},
16: {"pfdef",PFDEF},
17: {"global",GLOBAL},
18: {"extern",GLOBAL},
19: {"struct",STRUCT},
20: {"newstruct",NEWSTRUCT},
21: {"car",CAR},
22: {"cdr",CDR},
23: {"pari",PARIF},
24: {"map",MAP},
25: {"getopt",GETOPT},
26: {"timer",TIMER},
27: {0,0}
28: };
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>