Searched defs:toupper (Results 1 – 16 of 16) sorted by relevance
41 toupper(int c) in toupper() function
46 toupper(int c) in toupper() function
49 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
42 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
91 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x)) macro
87 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? (C) - 'a' + 'A': (C)) macro
100 #define toupper(c) __sbtoupper(c) macro
43 int32_t toupper; member
739 toupper ( in toupper() function
64 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
288 #define toupper(C) (((C) >= 'a' && (C) <= 'z') ? (C) - 'a' + 'A' : (C)) macro
80 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x)) macro
39 #define toupper(x) (((x) >= 'a' && (x) <= 'z') ? (x) - 'a' + 'A' : (x)) macro
240 static __inline int toupper(int c) in toupper() function
268 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? ((C) - 'a' + 'A'): (C)) macro
141 #define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A') macro