X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2Flexer.h;h=53732b49995f5fb60429e96f65e89a61ca108f4c;hb=9a04fda196e392d456f034e1fc2ad744a20d22b4;hp=57803e0541204a461a2ea4612667ba7d5152b85d;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp-builds.git diff --git a/src/language/lexer/lexer.h b/src/language/lexer/lexer.h index 57803e05..53732b49 100644 --- a/src/language/lexer/lexer.h +++ b/src/language/lexer/lexer.h @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #if !lexer_h #define lexer_h 1 @@ -32,8 +30,10 @@ struct lexer; struct lexer * lex_create (struct source_stream *); void lex_destroy (struct lexer *); +/* State accessors */ struct source_stream * lex_get_source_stream (const struct lexer *); - +enum syntax_mode lex_current_syntax_mode (const struct lexer *); +enum error_mode lex_current_error_mode (const struct lexer *); /* Common functions. */ void lex_get (struct lexer *); @@ -53,6 +53,7 @@ bool lex_is_string (struct lexer *); /* Token matching functions. */ bool lex_match (struct lexer *, int); bool lex_match_id (struct lexer *, const char *); +bool lex_match_id_n (struct lexer *, const char *, size_t n); bool lex_match_int (struct lexer *, int); /* Forcible matching functions. */ @@ -73,7 +74,7 @@ const char *lex_entire_line (const struct lexer *); const struct string *lex_entire_line_ds (const struct lexer *); const char *lex_rest_of_line (const struct lexer *); bool lex_end_dot (const struct lexer *); -void lex_preprocess_line (struct string *, enum getl_syntax, +void lex_preprocess_line (struct string *, enum syntax_mode, bool *line_starts_command, bool *line_ends_command); void lex_discard_line (struct lexer *); @@ -81,7 +82,7 @@ void lex_discard_rest_of_command (struct lexer *); /* Weird line reading functions. */ bool lex_get_line (struct lexer *); -bool lex_get_line_raw (struct lexer *, enum getl_syntax *); +bool lex_get_line_raw (struct lexer *); /* Token names. */ const char *lex_token_name (int);