CoolFace
Apppublic

vidya7732/AI_Doctor_LLM_GenModel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
fileutils.h31 linesDownload Raw Back to include
1#ifndef Py_FILEUTILS_H2#define Py_FILEUTILS_H3#ifdef __cplusplus4extern "C" {5#endif6 7#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030500008PyAPI_FUNC(wchar_t *) Py_DecodeLocale(9    const char *arg,10    size_t *size);11 12PyAPI_FUNC(char*) Py_EncodeLocale(13    const wchar_t *text,14    size_t *error_pos);15 16PyAPI_FUNC(char*) _Py_EncodeLocaleRaw(17    const wchar_t *text,18    size_t *error_pos);19#endif20 21#ifndef Py_LIMITED_API22#  define Py_CPYTHON_FILEUTILS_H23#  include  "cpython/fileutils.h"24#  undef Py_CPYTHON_FILEUTILS_H25#endif26 27#ifdef __cplusplus28}29#endif30#endif /* !Py_FILEUTILS_H */31