Files
metabuilder/typthon/Parser/string_parser.h
johndoe6345789 0e707caa56 feat: Add Typthon
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:10:58 +00:00

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