mirror of
https://github.com/python/cpython.git
synced 2024-11-25 01:20:47 +01:00
6 lines
224 B
C
6 lines
224 B
C
/* Parser-tokenizer link interface */
|
|
|
|
extern int parsestring PROTO((char *, grammar *, int start, node **n_ret));
|
|
extern int parsefile PROTO((FILE *, char *, grammar *, int start,
|
|
char *ps1, char *ps2, node **n_ret));
|