Staging
v0.8.1
Revision a96860c91cabb94675c25435e8d11443abb70db7 authored by Benjamin Peterson on 19 January 2014, 03:31:27 UTC, committed by Benjamin Peterson on 19 January 2014, 03:31:27 UTC
1 parent 3836593
Raw File
pgen.h
#ifndef Py_PGEN_H
#define Py_PGEN_H
#ifdef __cplusplus
extern "C" {
#endif


/* Parser generator interface */

extern grammar *meta_grammar(void);

struct _node;
extern grammar *pgen(struct _node *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PGEN_H */
back to top