Rename utils to util

This commit is contained in:
2023-11-23 10:31:51 +01:00
parent 783db8ba90
commit adaada9a22
12 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
#ifndef BREEZE_TOKENIZER_H
#define BREEZE_TOKENIZER_H
#include "../defines.h"
typedef struct Token {
const char *start;
int length;
int line;
} Token;
typedef struct Tokenizer {
const char *current;
int line;
} Tokenizer;
Tokenizer tokenizerCreate(const char *source);
Token tokenizerScan(Tokenizer *tokenizer);
#endif //BREEZE_TOKENIZER_H