source: trunk/libs/newlib/src/newlib/libc/ctype/iswprint_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: 258 bytes
Line 
1#include <_ansi.h>
2#include <wctype.h>
3
4int
5iswprint_l (wint_t c, struct __locale_t *locale)
6{
7  /* We're using a locale-independent representation of upper/lower case
8     based on Unicode data.  Thus, the locale doesn't matter. */
9  return iswprint (c);
10}
Note: See TracBrowser for help on using the repository browser.