| 43 |
|
#define __MODEL_PARSE_H__ |
| 44 |
|
|
| 45 |
|
|
| 46 |
< |
// the following are for the defines hash table |
| 46 |
> |
/* the following are for the defines hash table*/ |
| 47 |
|
|
| 48 |
|
extern void insert_define( char* defined, char* definition ); |
| 49 |
|
extern char* get_definition( char* defined ); |
| 50 |
|
#define DEFINED_BUFFER_SIZE 500 |
| 51 |
|
extern int is_defined( char* text ); |
| 52 |
|
|
| 53 |
< |
// checks to see if matched word is a reserved word. |
| 53 |
> |
/* checks to see if matched word is a reserved word.*/ |
| 54 |
|
extern int res_word( char* text ); |
| 55 |
|
|
| 56 |
< |
// removes the reserved word list from memory |
| 56 |
> |
/* removes the reserved word list from memory*/ |
| 57 |
|
extern void kill_lists( void ); |
| 58 |
|
|
| 59 |
|
#endif |