This commit is contained in:
Night Kaly 2024-05-18 19:07:13 +01:00
parent 931d14f35f
commit e65557d40d
Signed by: night0721
GPG key ID: 957D67B8DB7A119B

View file

@ -5,7 +5,8 @@
#include "lexer.h" #include "lexer.h"
Token *lexer(char *buf){ Token *lexer(char *buf)
{
char *current = strdup(buf); char *current = strdup(buf);
int current_index = 0, tokens_index = 0; int current_index = 0, tokens_index = 0;