summaryrefslogtreecommitdiff
path: root/igen/preprocessor.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2022-02-17 21:15:59 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2022-02-18 10:05:01 -0400
commitab0517cc4a6077c756d03c7c19311f5bd841d856 (patch)
treed1670125b9b9734506392247b9e76979748c764d /igen/preprocessor.h
parent524cfc23b15e1067076e45b056cb1d84e87e66cb (diff)
igen: Fixed some compilation errors, and warnings.
Diffstat (limited to 'igen/preprocessor.h')
-rw-r--r--igen/preprocessor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/igen/preprocessor.h b/igen/preprocessor.h
index 200f5b2..951f36c 100644
--- a/igen/preprocessor.h
+++ b/igen/preprocessor.h
@@ -74,6 +74,8 @@ struct source {
};
/*extern keyword *find_keyword(const char *key, keyword **keywords, int dbg);*/
+extern char *skip_whitespace(source *src, whitespace *wspace, int count_lines, int count_columns, int dbg);
+extern char *skip_comment(source *src, whitespace *wspace, comment_type *type, int dbg);
extern int find_keyword(const char *key, keyword **keywords, void *ctx, void **callback_ret, int dbg);
extern source *preprocess(source *parent, const char *filename, int dbg);
#endif