Searched refs:_toupper (Results 1 – 11 of 11) sorted by relevance
73 extern int _toupper(int);84 #define _toupper(c) (toupper(c)) macro
23 #pragma weak _toupper = toupper macro
84 #define _toupper(c) ((c) - 'a' + 'A') macro
42 #define toupper(c) (islower(c) ? _toupper(c) : (c))
49 #define toupper(c) (islower(c) ? _toupper(c) : (c))
49 func | _toupper | int | int | ctype.h | -ALL +XPG3+
64 #define toupper(c) (islower(c) ? _toupper(c) : (c))
225 #define TOUPPER(c) (isascii(c) && islower(c) ? _toupper(c) : c)
237 *p = (char)_toupper((int)*p); in get_bus_type()
2673 _toupper;
360 int _toupper(int c);