Staging
v0.5.1
https://github.com/python/cpython
Revision 48bd7f3a71c05dafec820dbbf76e611add7a9849 authored by Tim Peters on 29 August 2004, 22:38:38 UTC, committed by Tim Peters on 29 August 2004, 22:38:38 UTC
1 parent 0973b99
Raw File
Tip revision: 48bd7f3a71c05dafec820dbbf76e611add7a9849 authored by Tim Peters on 29 August 2004, 22:38:38 UTC
Whitespace normalization. test_difflib passes again.
Tip revision: 48bd7f3
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