Searched defs:TOLOWER (Results 1 – 6 of 6) sorted by relevance
30 #define TOLOWER(c) ((((c) >= 'A') && ((c) <= 'Z')) ? ((c) + 'a' - 'A') : (c)) macro
64 #define TOLOWER(c) Py_TOLOWER(c) macro
276 #define TOLOWER(x) (tolower((int) ((unsigned char)x))) macro
42 #define TOLOWER(c) ( (c) | 32 ) // works only for letters macro
289 #define TOLOWER(x) (tolower((int) ((unsigned char)x))) macro
571 static inline unsigned char TOLOWER (unsigned char c) in TOLOWER() function