source: trunk/sys/dietlibc/towlower.c @ 412

Last change on this file since 412 was 1, checked in by alain, 7 years ago

First import

File size: 123 bytes
Line 
1#include <wctype.h>
2
3wint_t towlower(wint_t c) {
4  if ( (unsigned int)(c - 'A') < 26u )
5    c += 'a' - 'A';
6  return c;
7}
8
Note: See TracBrowser for help on using the repository browser.