Searched defs:toupper (Results 1 – 17 of 17) sorted by relevance
41 toupper(int c) in toupper() function
46 toupper(int c) in toupper() function
103 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x)) macro
42 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
47 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
85 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? (C) - 'a' + 'A': (C)) macro
100 #define toupper(c) __sbtoupper(c) macro
20 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? (C) - 'a' + 'A': (C)) macro
36 #define toupper(C) (((C) >= 'a' && (C) <= 'z') ? (C) - 'a' + 'A': (C)) macro
43 int32_t toupper; member
989 toupper ( in toupper() function
61 #define toupper(c) (islower(c) ? _toupper(c) : (c)) macro
286 #define toupper(C) (((C) >= 'a' && (C) <= 'z') ? (C) - 'a' + 'A' : (C)) macro
79 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x)) macro
268 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? ((C) - 'a' + 'A'): (C)) macro
256 static __inline int toupper(int c) in toupper() function
141 #define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A') macro