Staging
v0.5.1
https://github.com/python/cpython
Revision d1e87a8288b18541ab555fc95ab94d06758015a0 authored by Tim Peters on 01 March 2001, 18:12:00 UTC, committed by Tim Peters on 01 March 2001, 18:12:00 UTC
of these "search the directory" schemes (including this one) are still prone
to making mistakes.
1 parent 4f64c13
Raw File
Tip revision: d1e87a8288b18541ab555fc95ab94d06758015a0 authored by Tim Peters on 01 March 2001, 18:12:00 UTC
More MacOSX fiddling. As noted in a comment, I believe all variations
Tip revision: d1e87a8
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