init parser

This commit is contained in:
hugogogo
2026-04-30 23:19:14 +02:00
parent 7a30dcc345
commit 512ba9b5f4
7 changed files with 70 additions and 13 deletions

10
src/parser.c Normal file
View File

@@ -0,0 +1,10 @@
#include "parser.h"
int parse(token *tokens, term *terms)
{
if (tokens)
{
terms[0].type = 0;
}
return 1;
}