]> git.saurik.com Git - bison.git/blobdiff - src/lex.h
More ignores.
[bison.git] / src / lex.h
index 14a4db49b29aaf1af9e735b4b80a830c257266e7..cb5a75e829fbe48da30b96881b2d42439116ee09 100644 (file)
--- a/src/lex.h
+++ b/src/lex.h
@@ -24,6 +24,7 @@
 /* Token-type codes. */
 typedef enum token_e
   {
 /* Token-type codes. */
 typedef enum token_e
   {
+    tok_undef, /* Not defined.  Used to initial token_t vars. */
     tok_eof,
     tok_identifier,
     tok_comma,
     tok_eof,
     tok_identifier,
     tok_comma,
@@ -47,19 +48,22 @@ typedef enum token_e
     tok_number,
     tok_expect,
     tok_thong,
     tok_number,
     tok_expect,
     tok_thong,
+    tok_define,
+    tok_skel,
     tok_noop,
     tok_setopt,
     tok_illegal,
     tok_obsolete
   } token_t;
 
     tok_noop,
     tok_setopt,
     tok_illegal,
     tok_obsolete
   } token_t;
 
-extern char *token_buffer;
+extern const char *token_buffer;
 extern bucket *symval;
 extern int numval;
 
 extern bucket *symval;
 extern int numval;
 
-void init_lex PARAMS ((void));
+void lex_init PARAMS ((void));
+void lex_free PARAMS ((void));
 int skip_white_space PARAMS ((void));
 int skip_white_space PARAMS ((void));
-void unlex PARAMS ((int));
+void unlex PARAMS ((token_t));
 void read_type_name PARAMS ((FILE *fin));
 
 /* Return one of the token-type codes.  When an identifier is seen,
 void read_type_name PARAMS ((FILE *fin));
 
 /* Return one of the token-type codes.  When an identifier is seen,
@@ -69,6 +73,6 @@ void read_type_name PARAMS ((FILE *fin));
 
 token_t lex PARAMS ((void));
 
 
 token_t lex PARAMS ((void));
 
-int parse_percent_token PARAMS ((void));
+token_t parse_percent_token PARAMS ((void));
 
 #endif /* !LEX_H_ */
 
 #endif /* !LEX_H_ */