summaryrefslogtreecommitdiff
path: root/source/lexer/lexer.c
blob: 8182c5adae48612609d1b9c380572a5a888e8efa (plain)
1
2
3
4
5
6
7
8
9
10
internal token *
tokenize_csv(string8 buffer)
{
    if(buffer.size < 0) return NULL;
    for(i32 index = 0;
         buffer.data[index] != '\0'
         ;)

    return NULL;
}