mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 06:05:05 +00:00
12 lines
241 B
C
12 lines
241 B
C
#ifndef STRINGS_H
|
|
#define STRINGS_H
|
|
|
|
#include <Python.h>
|
|
#include <pycore_ast.h>
|
|
#include "pegen.h"
|
|
|
|
PyObject *_PyPegen_parse_string(Parser *, Token *);
|
|
PyObject *_PyPegen_decode_string(Parser *, int, const char *, size_t, Token *);
|
|
|
|
#endif
|