Test a character to see if it's an uppercase letter
#include <wctype.h> int iswupper( wint_t wc );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The iswupper() function tests if the argument wc is an uppercase wide character of the class upper. In the C locale, this class includes the characters from A through Z.
A nonzero value if the character is a member of the class upper, or 0 otherwise.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | Yes |
Signal handler | Yes |
Thread | Yes |
The result is valid only for wchar_t arguments and WEOF.