Skip to content

Commit 6202743

Browse files
rename ubasic->basic
1 parent 9f324f5 commit 6202743

12 files changed

+501
-501
lines changed

include/ubasic.h include/basic.h

+136-132
Large diffs are not rendered by default.

include/kernel.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#include "input.h"
4545
#include "clock.h"
4646
#include "lapic_timer.h"
47-
#include "ubasic.h"
47+
#include "basic.h"
4848
#include "tokenizer.h"
4949
#include "taskswitch.h"
5050
#include "acpi.h"

include/taskswitch.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ typedef struct process_t {
3434
uint64_t size; /* Size of program in bytes */
3535
const char* csd; /* Current selected directory */
3636
struct console* cons; /* Program's console */
37-
struct ubasic_ctx* code; /* BASIC context */
37+
struct basic_ctx* code; /* BASIC context */
3838
struct process_t* prev; /* Prev process in doubly linked list */
3939
struct process_t* next; /* Next process in doubly linked list */
4040
} process_t;

include/tokenizer.h

+12-12
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* redirecting into the user program.
4141
*
4242
* 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.
4444
*/
4545
#define TOKEN(T) \
4646
T(ERROR) \
@@ -136,22 +136,22 @@ GENERATE_ENUM_LIST(TOKEN, token_t)
136136
* @param program program text
137137
* @param ctx context
138138
*/
139-
void tokenizer_init(const char *program, struct ubasic_ctx* ctx);
139+
void tokenizer_init(const char *program, struct basic_ctx* ctx);
140140

141141
/**
142142
* @brief advance to next token
143143
*
144144
* @param ctx context
145145
*/
146-
void tokenizer_next(struct ubasic_ctx* ctx);
146+
void tokenizer_next(struct basic_ctx* ctx);
147147

148148
/**
149149
* @brief peek to next token
150150
*
151151
* @param ctx context
152152
* @return int token
153153
*/
154-
int tokenizer_token(struct ubasic_ctx* ctx);
154+
int tokenizer_token(struct basic_ctx* ctx);
155155

156156
/**
157157
* @brief Get integer number as next token
@@ -161,7 +161,7 @@ int tokenizer_token(struct ubasic_ctx* ctx);
161161
* @param token token (NUMBER or HEXNUMBER)
162162
* @return int64_t number read from program
163163
*/
164-
int64_t tokenizer_num(struct ubasic_ctx* ctx, int token);
164+
int64_t tokenizer_num(struct basic_ctx* ctx, int token);
165165

166166
/**
167167
* @brief Get real number as next token
@@ -171,7 +171,7 @@ int64_t tokenizer_num(struct ubasic_ctx* ctx, int token);
171171
* @param token token (NUMBER)
172172
* @param f number read from program
173173
*/
174-
void tokenizer_fnum(struct ubasic_ctx* ctx, int token, double* f);
174+
void tokenizer_fnum(struct basic_ctx* ctx, int token, double* f);
175175

176176
/**
177177
* @brief Get a variable name as next token
@@ -180,7 +180,7 @@ void tokenizer_fnum(struct ubasic_ctx* ctx, int token, double* f);
180180
* @param ctx context
181181
* @return const char* variable name
182182
*/
183-
const char* tokenizer_variable_name(struct ubasic_ctx* ctx);
183+
const char* tokenizer_variable_name(struct basic_ctx* ctx);
184184

185185
/**
186186
* @brief Get a string constant as the next token
@@ -191,7 +191,7 @@ const char* tokenizer_variable_name(struct ubasic_ctx* ctx);
191191
* @param ctx context
192192
* @return true if succesfully found a string constant
193193
*/
194-
bool tokenizer_string(char *dest, int len, struct ubasic_ctx* ctx);
194+
bool tokenizer_string(char *dest, int len, struct basic_ctx* ctx);
195195

196196
/**
197197
* @brief Returns true if the program is finished
@@ -200,7 +200,7 @@ bool tokenizer_string(char *dest, int len, struct ubasic_ctx* ctx);
200200
* @param ctx context
201201
* @return int true if the program has finished
202202
*/
203-
int tokenizer_finished(struct ubasic_ctx* ctx);
203+
int tokenizer_finished(struct basic_ctx* ctx);
204204

205205
/**
206206
* @brief display an error to the terminal and end the program
@@ -210,7 +210,7 @@ int tokenizer_finished(struct ubasic_ctx* ctx);
210210
* @param ctx context
211211
* @param error error message
212212
*/
213-
void tokenizer_error_print(struct ubasic_ctx* ctx, const char* error);
213+
void tokenizer_error_print(struct basic_ctx* ctx, const char* error);
214214

215215
/**
216216
* @brief Get the next token
@@ -219,7 +219,7 @@ void tokenizer_error_print(struct ubasic_ctx* ctx, const char* error);
219219
* @param ctx context
220220
* @return int token found
221221
*/
222-
int get_next_token(struct ubasic_ctx* ctx);
222+
int get_next_token(struct basic_ctx* ctx);
223223

224224
/**
225225
* @brief Check if a decimal number is at the current
@@ -229,4 +229,4 @@ int get_next_token(struct ubasic_ctx* ctx);
229229
* @param ctx context
230230
* @return true if pointer points at a decimal number
231231
*/
232-
bool tokenizer_decimal_number(struct ubasic_ctx* ctx);
232+
bool tokenizer_decimal_number(struct basic_ctx* ctx);

0 commit comments

Comments
 (0)