minix/lib/libc/wchar/towlower.c

16 lines
286 B
C
Raw Normal View History

2010-04-19 17:20:24 +02:00
/*
* Very lame implementation of towlower that simply applies tolower
* if the character is within range of 'normal' characters.
*/
#include <wchar.h>
#include <ctype.h>
wint_t towlower(wint_t c)
{
if( c>0xff ){
return c;
}
return (wint_t) tolower((char) c);
}