40
40
* redirecting into the user program.
41
41
*
42
42
* The #define below builds an enum, and can also build an array of strings of the names in the
43
- * enum, which is built and used within ubasic .c for tokenization.
43
+ * enum, which is built and used within basic .c for tokenization.
44
44
*/
45
45
#define TOKEN (T ) \
46
46
T(ERROR) \
@@ -136,22 +136,22 @@ GENERATE_ENUM_LIST(TOKEN, token_t)
136
136
* @param program program text
137
137
* @param ctx context
138
138
*/
139
- void tokenizer_init (const char * program , struct ubasic_ctx * ctx );
139
+ void tokenizer_init (const char * program , struct basic_ctx * ctx );
140
140
141
141
/**
142
142
* @brief advance to next token
143
143
*
144
144
* @param ctx context
145
145
*/
146
- void tokenizer_next (struct ubasic_ctx * ctx );
146
+ void tokenizer_next (struct basic_ctx * ctx );
147
147
148
148
/**
149
149
* @brief peek to next token
150
150
*
151
151
* @param ctx context
152
152
* @return int token
153
153
*/
154
- int tokenizer_token (struct ubasic_ctx * ctx );
154
+ int tokenizer_token (struct basic_ctx * ctx );
155
155
156
156
/**
157
157
* @brief Get integer number as next token
@@ -161,7 +161,7 @@ int tokenizer_token(struct ubasic_ctx* ctx);
161
161
* @param token token (NUMBER or HEXNUMBER)
162
162
* @return int64_t number read from program
163
163
*/
164
- int64_t tokenizer_num (struct ubasic_ctx * ctx , int token );
164
+ int64_t tokenizer_num (struct basic_ctx * ctx , int token );
165
165
166
166
/**
167
167
* @brief Get real number as next token
@@ -171,7 +171,7 @@ int64_t tokenizer_num(struct ubasic_ctx* ctx, int token);
171
171
* @param token token (NUMBER)
172
172
* @param f number read from program
173
173
*/
174
- void tokenizer_fnum (struct ubasic_ctx * ctx , int token , double * f );
174
+ void tokenizer_fnum (struct basic_ctx * ctx , int token , double * f );
175
175
176
176
/**
177
177
* @brief Get a variable name as next token
@@ -180,7 +180,7 @@ void tokenizer_fnum(struct ubasic_ctx* ctx, int token, double* f);
180
180
* @param ctx context
181
181
* @return const char* variable name
182
182
*/
183
- const char * tokenizer_variable_name (struct ubasic_ctx * ctx );
183
+ const char * tokenizer_variable_name (struct basic_ctx * ctx );
184
184
185
185
/**
186
186
* @brief Get a string constant as the next token
@@ -191,7 +191,7 @@ const char* tokenizer_variable_name(struct ubasic_ctx* ctx);
191
191
* @param ctx context
192
192
* @return true if succesfully found a string constant
193
193
*/
194
- bool tokenizer_string (char * dest , int len , struct ubasic_ctx * ctx );
194
+ bool tokenizer_string (char * dest , int len , struct basic_ctx * ctx );
195
195
196
196
/**
197
197
* @brief Returns true if the program is finished
@@ -200,7 +200,7 @@ bool tokenizer_string(char *dest, int len, struct ubasic_ctx* ctx);
200
200
* @param ctx context
201
201
* @return int true if the program has finished
202
202
*/
203
- int tokenizer_finished (struct ubasic_ctx * ctx );
203
+ int tokenizer_finished (struct basic_ctx * ctx );
204
204
205
205
/**
206
206
* @brief display an error to the terminal and end the program
@@ -210,7 +210,7 @@ int tokenizer_finished(struct ubasic_ctx* ctx);
210
210
* @param ctx context
211
211
* @param error error message
212
212
*/
213
- void tokenizer_error_print (struct ubasic_ctx * ctx , const char * error );
213
+ void tokenizer_error_print (struct basic_ctx * ctx , const char * error );
214
214
215
215
/**
216
216
* @brief Get the next token
@@ -219,7 +219,7 @@ void tokenizer_error_print(struct ubasic_ctx* ctx, const char* error);
219
219
* @param ctx context
220
220
* @return int token found
221
221
*/
222
- int get_next_token (struct ubasic_ctx * ctx );
222
+ int get_next_token (struct basic_ctx * ctx );
223
223
224
224
/**
225
225
* @brief Check if a decimal number is at the current
@@ -229,4 +229,4 @@ int get_next_token(struct ubasic_ctx* ctx);
229
229
* @param ctx context
230
230
* @return true if pointer points at a decimal number
231
231
*/
232
- bool tokenizer_decimal_number (struct ubasic_ctx * ctx );
232
+ bool tokenizer_decimal_number (struct basic_ctx * ctx );
0 commit comments