mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 00:34:56 +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"
|
|
|
|
TyObject *_TyPegen_parse_string(Parser *, Token *);
|
|
TyObject *_TyPegen_decode_string(Parser *, int, const char *, size_t, Token *);
|
|
|
|
#endif
|