This example shows how to uppercase Unicode strings according to the language neutral case mapping tables.
#include <stdio.h> #include <unidef.h> int main(void) { UniChar ucs[] = L"computer"; UniChar *puni; puni = UniStrupr(ucs); return (ULS_SUCCESS); }