python-2.7.6/include/pgen.h Source File
Main Page
Topics
Modules
Namespaces
Classes
Files
Examples
File List
File Members
pgen.h
Go to the documentation of this file.
1
#ifndef Py_PGEN_H
2
#define Py_PGEN_H
3
#ifdef __cplusplus
4
extern
"C"
{
5
#endif
6
7
8
/* Parser generator interface */
9
10
extern
grammar
*
meta_grammar
(
void
);
11
12
struct
_node
;
13
extern
grammar
*
pgen
(
struct
_node
*);
14
15
#ifdef __cplusplus
16
}
17
#endif
18
#endif
/* !Py_PGEN_H */
grammar
Definition:
grammar.h:61
pgen
grammar * pgen(struct _node *)
_node
Definition:
node.h:10
meta_grammar
grammar * meta_grammar(void)