Test for an uppercase wide character
#include <wctype.h> int iswupper( wint_t wc );
libc
The iswupper() function tests if the argument wc is an uppercase wide character of the class upper. In the C locale, they are: A to Z.
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | Yes |
| Signal handler | Yes |
| Thread | Yes |
The result is valid only for char arguments and WEOF.
"Character manipulation functions" and "Wide-character functions" in the summary of functions chapter.