mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:43:00 +00:00
18 lines
No EOL
273 B
C
18 lines
No EOL
273 B
C
unsigned int _mbctolower(unsigned int c)
|
|
{
|
|
if (!_ismbblead(c) )
|
|
return tolower(c);
|
|
return c;
|
|
}
|
|
|
|
|
|
unsigned char * _mbslwr(unsigned char *x)
|
|
{
|
|
char *y=x;
|
|
|
|
while (*y) {
|
|
*y=_mbctolower(*y);
|
|
y++;
|
|
}
|
|
return x;
|
|
} |