115 inline bool IsCharWhitespace (char c) { |
115 inline bool IsCharWhitespace (char c) { |
116 return (c <= 32 || c == 127 || c == 255); |
116 return (c <= 32 || c == 127 || c == 255); |
117 } |
117 } |
118 |
118 |
119 // Byte datatype |
119 // Byte datatype |
120 typedef unsigned long int byte; |
120 typedef unsigned long int word; |
|
121 |
|
122 // Keywords |
|
123 #define NUM_KEYWORDS 20 |
|
124 #ifndef __MAIN_CXX__ |
|
125 extern const char** g_Keywords; |
|
126 #endif |
|
127 bool IsKeyword (str s); |
121 |
128 |
122 #endif // __COMMON_H__ |
129 #endif // __COMMON_H__ |