2026-03-10 19:12:14 +00:00
|
|
|
#ifndef XPCG_PARSE_H_
|
|
|
|
|
#define XPCG_PARSE_H_
|
2026-02-26 19:44:21 +00:00
|
|
|
|
|
|
|
|
struct ctx;
|
|
|
|
|
struct lex;
|
|
|
|
|
struct interface_definition;
|
|
|
|
|
|
|
|
|
|
extern struct interface_definition *parse_interface_definition(
|
|
|
|
|
struct ctx *ctx,
|
|
|
|
|
struct lex *lex);
|
|
|
|
|
|
|
|
|
|
#endif
|