Jump to content

UniStrlwr

From EDM2

UniStrlwr converts a Unicode string to lowercase according to the language neutral case mapping tables.

Syntax

UniChar *UniStrlwr (UniChar *ucsUniStringIn) 

Parameters

ucsUniStringIn (UniChar *) - input
Unicode string to be mapped to lowercase.

Returns

ucsUniStringOut (UniChar *) - returns

Converted lowercase string.

Remarks

The input string must be null-terminated.

Example

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);
}

Format

#include <unidef.h>

UniChar *UniStrlwr
    (UniChar *ucsUniStringIn) 

Related Functions