/Users/lyon/j4p/src/gui/htmlconverter/CText.java
|
1 package gui.htmlconverter;
2
3 public interface CText {
4 public static String cReservedWords[] = {
5 "auto",
6 "break",
7 "case",
8 "char",
9 "const",
10 "continue",
11 "default",
12 "do",
13 "double",
14 "else",
15 "enum",
16 "extern",
17 "float",
18 "for",
19 "goto",
20 "if",
21 "int",
22 "long",
23 "register",
24 "return",
25 "short",
26 "signed",
27 "sizeof",
28 "static",
29 "struct",
30 "switch",
31 "typedef",
32 "union",
33 "unsigned",
34 "void",
35 "volatile",
36 "while"
37 };
38 }
39