Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
iswdigit.c File Reference
#include <wctype.h>
Include dependency graph for iswdigit.c:

Go to the source code of this file.

Functions

int iswdigit (wint_t wc)
 

Function Documentation

◆ iswdigit()

int iswdigit ( wint_t  wc)

Definition at line 3 of file iswdigit.c.

4 {
5  return (unsigned)wc - '0' < 10;
6 }

Referenced by iswalnum(), and iswctype().

Here is the caller graph for this function: