CoolFace
Apppublic

vidya7732/AI_Doctor_LLM_GenModel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
pystrcmp.h24 linesDownload Raw Back to include
1#ifndef Py_STRCMP_H2#define Py_STRCMP_H3 4#ifdef __cplusplus5extern "C" {6#endif7 8PyAPI_FUNC(int) PyOS_mystrnicmp(const char *, const char *, Py_ssize_t);9PyAPI_FUNC(int) PyOS_mystricmp(const char *, const char *);10 11#ifdef MS_WINDOWS12#define PyOS_strnicmp strnicmp13#define PyOS_stricmp stricmp14#else15#define PyOS_strnicmp PyOS_mystrnicmp16#define PyOS_stricmp PyOS_mystricmp17#endif18 19#ifdef __cplusplus20}21#endif22 23#endif /* !Py_STRCMP_H */24