fix(parser): functions body placebo so code compiles

This commit is contained in:
Gu://em_ 2026-01-10 19:16:36 +01:00
parent b1bcd5e729
commit 417a518d1b
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#include "parser.h"
#include <stddef.h>
struct ast *get_ast()
{
return NULL;
}
struct ast *get_ast_str(char *command)
{
return NULL;
}