Staging
v0.5.1
Revision 7f7f986cc485c40d80bae504333e3946ce9e96ba authored by Serhiy Storchaka on 30 October 2019, 19:36:19 UTC, committed by GitHub on 30 October 2019, 19:36:19 UTC
Replace all *NULL* with ``NULL``.
(cherry picked from commit 25fc088607c855060ed142296dc1bd0125fad1af)
1 parent 4cb08b6
Raw File
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