diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-01-27 21:10:38 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-01-27 21:10:38 -0700 |
| commit | b6354ddd5a4840d856899eca63267785355cbd3e (patch) | |
| tree | 34314c10b8e1f7986395c36011c99c89a2efc20e /src/parseh.hpp | |
| parent | c281533638dd08bb84f4f538fd8c5ae85791d034 (diff) | |
| download | zig-b6354ddd5a4840d856899eca63267785355cbd3e.tar.gz zig-b6354ddd5a4840d856899eca63267785355cbd3e.zip | |
move AST rendering code to separate file
Diffstat (limited to 'src/parseh.hpp')
| -rw-r--r-- | src/parseh.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/parseh.hpp b/src/parseh.hpp index b7cb9af279..e2bb272401 100644 --- a/src/parseh.hpp +++ b/src/parseh.hpp @@ -11,7 +11,9 @@ #include "all_types.hpp" -int parse_h_file(ParseH *parse_h, ZigList<const char *> *clang_argv); -int parse_h_buf(ParseH *parse_h, Buf *source, const char **args, int args_len, const char *libc_include_path); +int parse_h_file(ImportTableEntry *out_import, ZigList<ErrorMsg *> *out_errs, + ZigList<const char *> *clang_argv); +int parse_h_buf(ImportTableEntry *out_import, ZigList<ErrorMsg *> *out_errs, + Buf *source, const char **args, int args_len, const char *libc_include_path); #endif |
