diff options
-rw-r--r-- | code.txt (renamed from iets.txt) | 0 | ||||
-rw-r--r-- | parser.c | 6 | ||||
-rw-r--r-- | parser.h | 1 |
3 files changed, 7 insertions, 0 deletions
@@ -1,4 +1,10 @@ #include <stdio.h> #include <string.h> +#include "parser.h" + +AST* parse(const char *source){ + (void)source; + return NULL; +} @@ -1,5 +1,6 @@ #pragma once +#include <stdbool.h> #include <stdint.h> typedef enum ASTtype{ |