This example shows how to convert a Unicode character to uppercase according to the language neutral case mapping tables.

#include <stdio.h>
#include <unidef.h>

int main(void) {

UniChar    uni_lwr = L'c';
UniChar    uni_upr;

         uni_upr = UniToupper(uni_lwr);

         return (ULS_SUCCESS);

}


[Back: UniToupper - Related Functions]
[Next: UniToupper - Topics]