ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/tags/mpi_start/mdtools/BASS_parse/BASS_parse.h
Revision: 116
Committed: Mon Sep 23 15:13:12 2002 UTC (21 years, 10 months ago)
Content type: text/plain
File size: 479 byte(s)
Log Message:
This commit was manufactured by cvs2svn to create tag 'mpi_start'.

File Contents

# Content
1 #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