include/libtu/tokenizer.h

Wed, 19 Apr 2000 22:17:57 +0200

author
tuomov
date
Wed, 19 Apr 2000 22:17:57 +0200
changeset 6
f73065173121
parent 5
f878a9ffa3e0
child 8
c1994196683f
permissions
-rw-r--r--

trunk: changeset 9
Added rules.mk system.mk

5
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
1 /*
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
2 * libtu/tokenizer.h
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
3 *
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
4 * Copyright (c) Tuomo Valkonen 1999-2000.
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
5 *
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
6 * This file is distributed under the terms of the "Artistic License".
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
7 * See the included file LICENSE for details.
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
8 */
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
9
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
10 #ifndef __LIBTU_TOKENIZER_H
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
11 #define __LIBTU_TOKENIZER_H
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
12
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
13 #include <stdio.h>
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
14 #include "types.h"
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
15
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
16
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
17 #define TOK_SET_LONG(TOK, VAL) {(TOK)->type=TOK_LONG; (TOK)->u.lval=VAL;}
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
18 #define TOK_SET_DOUBLE(TOK, VAL) {(TOK)->type=TOK_DOUBLE; (TOK)->u.dval=VAL;}
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
19 #define TOK_SET_CHAR(TOK, VAL) {(TOK)->type=TOK_CHAR; (TOK)->u.cval=VAL;}
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
20 #define TOK_SET_STRING(TOK, VAL) {(TOK)->type=TOK_STRING; (TOK)->u.sval=VAL;}
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
21 #define TOK_SET_IDENT(TOK, VAL) {(TOK)->type=TOK_IDENT; (TOK)->u.sval=VAL;}
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
22 #define TOK_SET_COMMENT(TOK, VAL) {(TOK)->type=TOK_COMMENT; (TOK)->u.sval=VAL;}
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
23 #define TOK_SET_OP(TOK, VAL) {(TOK)->type=TOK_OP; (TOK)->u.opval=VAL;}
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
24
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
25 #define TOK_TYPE(TOK) ((TOK)->type)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
26 #define TOK_LONG_VAL(TOK) ((TOK)->u.lval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
27 #define TOK_DOUBLE_VAL(TOK) ((TOK)->u.dval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
28 #define TOK_CHAR_VAL(TOK) ((TOK)->u.cval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
29 #define TOK_STRING_VAL(TOK) ((TOK)->u.sval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
30 #define TOK_IDENT_VAL(TOK) ((TOK)->u.sval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
31 #define TOK_COMMENT_VAL(TOK) ((TOK)->u.sval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
32 #define TOK_OP_VAL(TOK) ((TOK)->u.opval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
33
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
34 #define TOK_IS_INVALID(TOK) ((TOK)->type==TOK_INVALID)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
35 #define TOK_IS_LONG(TOK) ((TOK)->type==TOK_LONG)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
36 #define TOK_IS_DOUBLE(TOK) ((TOK)->type==TOK_DOUBLE)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
37 #define TOK_IS_CHAR(TOK) ((TOK)->type==TOK_CHAR)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
38 #define TOK_IS_STRING(TOK) ((TOK)->type==TOK_STRING)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
39 #define TOK_IS_IDENT(TOK) ((TOK)->type==TOK_IDENT)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
40 #define TOK_IS_COMMENT(TOK) ((TOK)->type==TOK_COMMENT)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
41 #define TOK_IS_OP(TOK) ((TOK)->type==TOK_OP)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
42
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
43 #define TOK_OP_IS(TOK, OP) ((TOK)->type==TOK_OP && (TOK)->u.opval==(OP))
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
44
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
45 #define TOK_TAKE_STRING_VAL(TOK) ((TOK)->type=TOK_INVALID, (TOK)->u.sval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
46 #define TOK_TAKE_IDENT_VAL(TOK) ((TOK)->type=TOK_INVALID, (TOK)->u.sval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
47 #define TOK_TAKE_COMMENT_VAL(TOK) ((TOK)->type=TOK_INVALID, (TOK)->u.sval)
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
48
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
49
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
50 enum{
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
51 TOK_INVALID=0,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
52 TOK_LONG,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
53 TOK_DOUBLE,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
54 TOK_CHAR,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
55 TOK_STRING,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
56 TOK_IDENT,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
57 TOK_COMMENT,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
58 TOK_OP
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
59 };
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
60
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
61
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
62 enum{
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
63 #define OP2(X,Y) ((X)|((Y)<<8))
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
64 #define OP3(X,Y,Z) ((X)|((Y)<<8)|((Z)<<16))
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
65
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
66 OP_L_PAR= '(', OP_R_PAR= ')', OP_L_BRK= '[', OP_R_BRK= ']',
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
67 OP_L_BRC= '{', OP_R_BRC= '}', OP_COMMA= ',', OP_SCOLON= ';',
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
68
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
69 OP_PLUS= '+', OP_MINUS= '-', OP_MUL= '*', OP_DIV= '/',
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
70 OP_MOD= '%', OP_POW= '^', OP_OR= '|', OP_AND= '&',
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
71 /*OP_NOT= '~',*/ OP_NOT= '!', OP_ASGN= '=', OP_LT= '<',
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
72 OP_GT= '>', OP_DOT= '.', OP_COLON= ':', OP_QMARK= '?',
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
73 OP_AT= '@',
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
74 OP_NEXTLINE='\n',OP_EOF= -1,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
75
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
76 OP_INC= OP2('+','+'), OP_DEC= OP2('-','-'),
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
77 OP_LSHIFT= OP2('<','<'), OP_RSHIFT= OP2('>','>'),
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
78 OP_AS_INC= OP2('+','='), OP_AS_DEC= OP2('-','='),
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
79 OP_AS_MUL= OP2('*','='), OP_AS_DIV= OP2('/','='),
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
80 OP_AS_MOD= OP2('%','='), OP_AS_POW= OP2('^','='),
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
81
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
82 /* AS_OR= OP2('|','='), AS_AND= OP2('&','='), */
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
83 OP_EQ= OP2('=','='), OP_NE= OP2('!','='),
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
84 OP_LE= OP2('<','='), OP_GE= OP2('>','=')
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
85
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
86 /* L_AND= OP2('&','&'), L_OR= OP2('|','|'),
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
87 L_XOR= OP2('^','^'), */
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
88
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
89 /* AsLShift= OP3('<','<','='),
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
90 AsRShift= OP3('>','>','='), */
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
91
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
92 #undef OP2
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
93 #undef OP3
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
94 };
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
95
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
96
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
97 typedef struct{
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
98 int type;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
99 int line;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
100 union{
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
101 long lval;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
102 double dval;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
103 char cval;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
104 char *sval;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
105 int opval;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
106 } u;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
107 } Token;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
108
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
109 #define TOK_INIT {0, 0, {0}}
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
110
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
111
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
112 extern void tok_free(Token*tok);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
113 extern void tok_init(Token*tok);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
114
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
115
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
116 /* */
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
117
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
118
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
119 enum{
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
120 TOKZ_IGNORE_NEXTLINE=0x1,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
121 TOKZ_READ_COMMENTS=0x2,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
122 TOKZ_PARSER_INDENT_MODE=0x04,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
123 TOKZ_ERROR_TOLERANT=0x8
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
124 };
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
125
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
126
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
127 enum{
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
128 E_TOKZ_UNEXPECTED_EOF=1,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
129 E_TOKZ_UNEXPECTED_EOL,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
130 E_TOKZ_EOL_EXPECTED,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
131 E_TOKZ_INVALID_CHAR,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
132 E_TOKZ_TOOBIG,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
133 E_TOKZ_NUMFMT,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
134 E_TOKZ_NUM_JUNK,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
135 E_TOKZ_NOTINT,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
136 E_TOKZ_RANGE,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
137 E_TOKZ_MULTICHAR,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
138
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
139 E_TOKZ_TOKEN_LIMIT,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
140 E_TOKZ_UNKNOWN_OPTION,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
141 E_TOKZ_SYNTAX,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
142 E_TOKZ_INVALID_ARGUMENT,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
143 E_TOKZ_EOS_EXPECTED,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
144 E_TOKZ_TOO_FEW_ARGS,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
145 E_TOKZ_TOO_MANY_ARGS,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
146 E_TOKZ_MAX_NEST,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
147 E_TOKZ_IDENTIFIER_EXPECTED,
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
148
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
149 E_TOKZ_LBRACE_EXPECTED
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
150 };
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
151
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
152
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
153 struct _ConfOpt;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
154
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
155 typedef struct _Tokenizer_FInfo{
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
156 FILE *file;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
157 char *name;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
158 int line;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
159 int ungetc;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
160 Token ungettok;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
161 } Tokenizer_FInfo;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
162
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
163 typedef struct _Tokenizer{
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
164 FILE *file;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
165 char *name;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
166 int line;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
167 int ungetc;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
168 Token ungettok;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
169
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
170 int flags;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
171 const struct _ConfOpt **optstack;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
172 int nest_lvl;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
173 void *user_data;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
174
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
175 int filestack_n;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
176 Tokenizer_FInfo *filestack;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
177 } Tokenizer;
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
178
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
179
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
180 extern Tokenizer *tokz_open(const char *fname);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
181 extern Tokenizer *tokz_open_file(FILE *file);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
182 extern void tokz_close(Tokenizer *tokz);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
183 extern bool tokz_get_token(Tokenizer *tokz, Token *tok);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
184 extern void tokz_unget_token(Tokenizer *tokz, Token *tok);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
185 extern void tokz_warn_error(const Tokenizer *tokz, int line, int e);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
186
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
187 extern bool tokz_pushf(Tokenizer *tokz, const char *fname);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
188 extern bool tokz_pushf_file(Tokenizer *tokz, FILE *file);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
189 extern bool tokz_popf(Tokenizer *tokz);
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
190
f878a9ffa3e0 trunk: changeset 8
tuomov
parents:
diff changeset
191 #endif /* __LIBTU_TOKENIZER_H */

mercurial