~ibmcharmers/charms/xenial/ibm-db2/trunk

« back to all changes in this revision

Viewing changes to .tox/py35/include/python3.5m/pgen.h

  • Committer: Rajith Venkata
  • Date: 2017-02-22 09:37:48 UTC
  • Revision ID: rajith.pv@in.ibm.com-20170222093748-fibtdsahuug31ra5
2ndcheckin for IBM-DB2 charm

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */