Added custom assert(); Fixed bugs in T-TEST and VALUE LABELS
[pspp-builds.git] / src / lexer.h
index 542721b9d75db6b5a40d689258b156b22d2b00fa..2dd7da06273cfb11e2d11ddf745158385c588108 100644 (file)
@@ -87,6 +87,8 @@ int lex_end_of_command (void);
 /* Token testing functions. */
 int lex_integer_p (void);
 long lex_integer (void);
+int lex_double_p (void);
+double lex_double (void);
 
 /* Token matching functions. */
 int lex_match (int);
@@ -109,7 +111,7 @@ int lex_id_match (const char *keyword_string, const char *token_string);
 /* Weird token functions. */
 int lex_look_ahead (void);
 void lex_put_back (int);
-void lex_put_forward (int);
+void lex_put_back_id (const char *tokid);
 
 /* Weird line processing functions. */
 char *lex_entire_line (void);