reactos/reactos/lib/crtdll/mbstring/mbslwr.c
Boudewijn Dekker ed08466464 Added various files.
--> failed to pass test printing a simple string

svn path=/trunk/; revision=380
1999-04-14 21:27:02 +00:00

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