diff options
| author | Tom Smeding <tom.smeding@gmail.com> | 2016-07-30 18:30:00 +0200 |
|---|---|---|
| committer | Tom Smeding <tom.smeding@gmail.com> | 2016-07-30 18:30:00 +0200 |
| commit | ee04f72b83ecd869148d57871af570fc704951ec (patch) | |
| tree | d0af1556ee7c0fe348f40b7deb69ae00642c8b26 | |
| parent | 8b49e73d6089e4a9195ce01c3f4c95e85336397d (diff) | |
Third
| -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{ |
