Searched defs:tolower (Results 1 – 9 of 9) sorted by relevance
99 tolower(int c) in tolower() function
85 #define tolower(c) __tolower(c) macro
197 tolower(int c) in tolower() function
101 #define tolower(c) __sbtolower(c) macro
83 int32_t tolower; member
256 tolower(char_type __c) const in tolower() function271 tolower(char_type* __lo, const char_type* __hi) const in tolower() function830 tolower(char_type __c) const in tolower() function847 tolower(char_type* __lo, const char_type* __hi) const in tolower() function4684 tolower(_CharT __c, const locale& __loc) in tolower() function
184 tolower keyword
258 static __inline int tolower(int c) in tolower() function
36 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro