summaryrefslogtreecommitdiff
path: root/source/lexer
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-03-04 22:20:11 +0000
committernasr <nsrddyn@gmail.com>2026-03-04 22:20:11 +0000
commitaa2bee82ac82ff47c6be84f2e6d39c690ec66a21 (patch)
tree2631c96f888503e1558dc935f845974272c825d7 /source/lexer
parent111fde401ad32ceff815f0a5ea3ace650cce60b6 (diff)
feature(main): ryan fleur nil nodes
will add the source to the sources.txt in the future
Diffstat (limited to 'source/lexer')
-rw-r--r--source/lexer/lexer.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/lexer/lexer.c b/source/lexer/lexer.c
index 60a5cda..8182c5a 100644
--- a/source/lexer/lexer.c
+++ b/source/lexer/lexer.c
@@ -1,8 +1,10 @@
1internal token * 1internal token *
2tokenize(string8 buffer) 2tokenize_csv(string8 buffer)
3{ 3{
4 4 if(buffer.size < 0) return NULL;
5 // TODO(nasr): tokenize the user input 5 for(i32 index = 0;
6 buffer.data[index] != '\0'
7 ;)
6 8
7 return NULL; 9 return NULL;
8} 10}