(root)/
Python-3.12.0/
Parser/
string_parser.h
       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