source: trunk/sys/dietlibc/towupper.c @ 144

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

First import

File size: 123 bytes
Line 
1#include <wctype.h>
2
3wint_t towupper(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.