X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flexer.h;h=2dd7da06273cfb11e2d11ddf745158385c588108;hb=6d34b6cd00bb26603f8acedd3f0ed69a4484e484;hp=542721b9d75db6b5a40d689258b156b22d2b00fa;hpb=4944c86a9318bc5b5578ab145a95c116ffd2c9fd;p=pspp diff --git a/src/lexer.h b/src/lexer.h index 542721b9d7..2dd7da0627 100644 --- a/src/lexer.h +++ b/src/lexer.h @@ -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);