diff options
Diffstat (limited to 'wrapperhelper/src/parse.h')
| -rw-r--r-- | wrapperhelper/src/parse.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/wrapperhelper/src/parse.h b/wrapperhelper/src/parse.h new file mode 100644 index 00000000..8c7d54b3 --- /dev/null +++ b/wrapperhelper/src/parse.h @@ -0,0 +1,14 @@ +#pragma once + +#ifndef PARSE_H +#define PARSE_H + +#include <stdio.h> + +#include "lang.h" + +void dump_prepare(const char *filename, FILE *file); +void dump_preproc(const char *filename, FILE *file); +file_t *parse_file(const char *filename, FILE *file); + +#endif // PARSE_H |