Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pystrcmp.h 436 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. #ifndef Py_STRCMP_H
  2. #define Py_STRCMP_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. PyAPI_FUNC(int) PyOS_mystrnicmp(const char *, const char *, Py_ssize_t);
  7. PyAPI_FUNC(int) PyOS_mystricmp(const char *, const char *);
  8. #ifdef MS_WINDOWS
  9. #define PyOS_strnicmp strnicmp
  10. #define PyOS_stricmp stricmp
  11. #else
  12. #define PyOS_strnicmp PyOS_mystrnicmp
  13. #define PyOS_stricmp PyOS_mystricmp
  14. #endif
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* !Py_STRCMP_H */
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...