Jump to content

UniStrlwr

From EDM2
Revision as of 03:04, 16 August 2017 by Martini (talk | contribs) (Created page with "UniStrlwr converts a Unicode string to lowercase according to the language neutral case mapping tables. ==Syntax== UniChar *UniStrlwr (UniChar *ucsUniStringIn) ==Paramete...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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