UniTolower
Appearance
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)