blob: caf022c184c4be02d073c2c860b1540645d49a54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* 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 */
|