| isupper | Function (Macro) |
| ctype.h |
| short isupper (short c); |
Checks whether a character is an uppercase.
isupper returns nonzero if c is an uppercase letter ('A' to 'Z'), otherwise it returns zero. It is a small inline function which is implemented using GNU C smart macros.