Jump to content

UniTolower

From EDM2
Revision as of 02:58, 16 August 2017 by Martini (talk | contribs) (Created page with "UniTolower converts a Unicode character to lowercase according to the language neutral case mapping tables. ==Syntax== UniChar UniTolower (UniChar ucUniCharIn) ==Parameter...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

UniTolower converts a Unicode character to lowercase according to the language neutral case mapping tables.

Syntax

UniChar UniTolower (UniChar ucUniCharIn)

Parameters

ucUniCharIn (UniChar) - input
Unicode character to be mapped to lowercase.

Returns

ucUniCharOut (UniChar) - returns

Converted lowercase character.

Remarks

Example

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

Format

#include <unidef.h>

UniChar UniTolower
    (UniChar ucUniCharIn) 

Related Functions