Remove "Written by Ben Pfaff <blp@gnu.org>" lines everywhere.
[pspp-builds.git] / src / data / identifier.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17    02110-1301, USA. */
18
19 #ifndef DATA_IDENTIFIER_H
20 #define DATA_IDENTIFIER_H 1
21
22 #include <ctype.h>
23 #include <stdbool.h>
24 #include <sys/types.h>
25 #include <libpspp/str.h>
26
27 /* Token types. */
28 enum
29   {
30     T_ID = 256, /* Identifier. */
31     T_POS_NUM,  /* Positive number. */
32     T_NEG_NUM,  /* Negative number. */
33     T_STRING,   /* Quoted string. */
34     T_STOP,     /* End of input. */
35
36     T_AND,      /* AND */
37     T_OR,       /* OR */
38     T_NOT,      /* NOT */
39
40     T_EQ,       /* EQ */
41     T_GE,       /* GE or >= */
42     T_GT,       /* GT or > */
43     T_LE,       /* LE or <= */
44     T_LT,       /* LT or < */
45     T_NE,       /* NE or ~= */
46
47     T_ALL,      /* ALL */
48     T_BY,       /* BY */
49     T_TO,       /* TO */
50     T_WITH,     /* WITH */
51
52     T_EXP,      /* ** */
53   };
54
55 /* Tokens. */
56 bool lex_is_keyword (int token);
57
58 /* Recognizing identifiers. */
59 bool lex_is_id1 (char);
60 bool lex_is_idn (char);
61 size_t lex_id_get_length (struct substring);
62
63 /* Comparing identifiers. */
64 bool lex_id_match (struct substring keyword, struct substring token);
65 int lex_id_to_token (struct substring);
66
67 /* Identifier names. */
68 const char *lex_id_name (int);
69
70 #endif /* !data/identifier.h */