This example shows how to convert a Unicode character to lowercase according to the language neutral case mapping tables.
#include <stdio.h> #include <unidef.h> int main(void) { UniChar uni_upr = L'C'; UniChar uni_lwr; uni_lwr = UniTolower(uni_upr); return (ULS_SUCCESS); }