Staging
v0.8.1
https://github.com/python/cpython
Revision 496790b5413a28eb240033f4900099fff40b01e6 authored by Benjamin Peterson on 27 May 2016, 05:55:49 UTC, committed by Benjamin Peterson on 27 May 2016, 05:55:49 UTC
1 parent 01d2580
Raw File
Tip revision: 496790b5413a28eb240033f4900099fff40b01e6 authored by Benjamin Peterson on 27 May 2016, 05:55:49 UTC
remove cruft from Schwarzian transform section
Tip revision: 496790b
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