Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Parser/string_parser.h
12 views
1
#ifndef STRINGS_H
2
#define STRINGS_H
3
4
#include <Python.h>
5
#include <pycore_ast.h>
6
#include "pegen.h"
7
8
PyObject *_PyPegen_parse_string(Parser *, Token *);
9
PyObject *_PyPegen_decode_string(Parser *, int, const char *, size_t, Token *);
10
11
#endif
12
13