source: trunk/sys/dietlibc/iswdigit.c @ 54

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

First import

File size: 90 bytes
Line 
1#include <wctype.h>
2
3int iswdigit(wint_t c) {
4    return (unsigned int)(c - '0') < 10u;
5}
Note: See TracBrowser for help on using the repository browser.