feat(lexer): finished

This commit is contained in:
Matteo Flebus 2026-01-12 21:31:15 +01:00
parent 97b7240286
commit 745649df1c
2 changed files with 57 additions and 19 deletions

View file

@ -30,6 +30,7 @@ char *new_token(char *begin, ssize_t size);
* If it is, it calls stream_read() from IO_backend,
* and sets [remaing_chars].
* If not, it starts from the end of the last token.
* Also trims left blanks before returning.
*
* @return: char* stream from which we tokenise.
*/