ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/BASS_parse/BASS_parse.h
Revision: 11
Committed: Tue Jul 9 18:40:59 2002 UTC (22 years ago) by mmeineke
Content type: text/plain
File size: 479 byte(s)
Log Message:
This commit was generated by cvs2svn to compensate for changes in r10, which
included commits to RCS files with non-trunk default branches.

File Contents

# User Rev Content
1 mmeineke 10 #ifndef __MODEL_PARSE_H__
2     #define __MODEL_PARSE_H__
3    
4     #include "BASS.tab.h"
5    
6     // the following are for the defines hash table
7    
8     extern void insert_define( char* defined, char* definition );
9     extern char* get_definition( char* defined );
10     #define DEFINED_BUFFER_SIZE 500
11     extern int is_defined( char* text );
12    
13     // checks to see if matched word is a reserved word.
14     extern int res_word( char* text );
15    
16     // removes the reserved word list from memory
17     extern void kill_lists( void );
18    
19     #endif