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

Go to the source code of this file.

Functions

int iswxdigit (wint_t wc)
 

Function Documentation

◆ iswxdigit()

int iswxdigit ( wint_t  wc)

Definition at line 3 of file iswxdigit.c.

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

Referenced by iswctype().

Here is the caller graph for this function: