/* * Statement parser. * Copyright (c) 2023-2024, Quinn Stephens and the OSMORA team. * Provided under the BSD 3-Clause license. */ #ifndef _PARSER_STMT_H #define _PARSER_STMT_H #include "parser/ast.h" #include "parser/proc.h" #include "parser.h" void parse_stmt_block(struct parser *ctx, struct ast_node *parent, struct procedure *proc); #endif /* !_PARSER_STMT_H */