Staging
v0.8.1
https://github.com/python/cpython
Revision 8ba4cc9f99a78ad66a0d57b366f0a8fa010ee660 authored by Martin v. Löwis on 23 December 2008, 13:15:02 UTC, committed by Martin v. Löwis on 23 December 2008, 13:15:02 UTC
1 parent 3c08e45
Raw File
Tip revision: 8ba4cc9f99a78ad66a0d57b366f0a8fa010ee660 authored by Martin v. Löwis on 23 December 2008, 13:15:02 UTC
Issue #4689: Fix typo.
Tip revision: 8ba4cc9
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