source: trunk/libs/newlib/src/newlib/libc/ctype/towlower_l.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 300 bytes
Line 
1#include <_ansi.h>
2#include <newlib.h>
3#include <wctype.h>
4#include "local.h"
5
6wint_t
7towlower_l (wint_t c, struct __locale_t *locale)
8{
9  /* We're using a locale-independent representation of upper/lower case
10     based on Unicode data.  Thus, the locale doesn't matter. */
11  return towlower (c);
12}
Note: See TracBrowser for help on using the repository browser.