picrin/include/picrin/parse.h

27 lines
335 B
C

/**
* See Copyright Notice in picrin.h
*/
#ifndef PARSE_H__
#define PARSE_H__
#if defined(__cplusplus)
extern "C" {
#endif
struct parser_control {
pic_state *pic;
void *yyscanner;
pic_value value;
bool incomp;
int yynerrs;
struct pic_vector *yy_arena;
int yy_arena_idx;
};
#if defined(__cplusplus)
}
#endif
#endif