Searched defs:toupper (Results 1 – 14 of 14) 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
739 toupper ( in toupper() function
43 int32_t toupper; member
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
268 #define toupper(C) (((C) >= 'a' && (C) <= 'z')? ((C) - 'a' + 'A'): (C)) macro
138 #define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A') macro