How to test if a unicode character (char32_t) is in upper case in C++

281 views Asked by At

Is there an isupper for char32_t? I get an assertion fail on the following code line

assert(isupper(U'Å'));

0

There are 0 answers