Staging
v0.5.1
https://github.com/python/cpython
Revision c934f32e0a2b5f9f2bc0b55573a6860626025d63 authored by Florent Xicluna on 03 September 2010, 23:47:32 UTC, committed by Florent Xicluna on 03 September 2010, 23:47:32 UTC
1 parent 0b37b33
Raw File
Tip revision: c934f32e0a2b5f9f2bc0b55573a6860626025d63 authored by Florent Xicluna on 03 September 2010, 23:47:32 UTC
Welcome to the UTF-8 world.
Tip revision: c934f32
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