This example shows how to convert a Unicode string to lowercase.
#include <stdio.h>
#include <unidef.h>
int main(void) {
UniChar *plwr_unistr;
/* plwr_unistr points to the converted lowercase Unicode string */
plwr_unistr = UniStrlwr((UniChar *)L"IBM");
return (ULS_SUCCESS);
}