diff options
Diffstat (limited to 'include/fwd/analyze.h')
-rw-r--r-- | include/fwd/analyze.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/fwd/analyze.h b/include/fwd/analyze.h new file mode 100644 index 0000000..bdbcdb2 --- /dev/null +++ b/include/fwd/analyze.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2024 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + +#ifndef FWD_ANALYZE +#define FWD_ANALYZE + +#include <fwd/ast.h> +#include <fwd/scope.h> + +int analyze_root(struct scope *scope, struct ast *root); + +#endif /* FWD_ANALYZE */ |