Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
iswblank.c
Go to the documentation of this file.
1 #include <ctype.h>
2 #include <wctype.h>
3 
4 int iswblank(wint_t wc)
5 {
6  return isblank((int)wc);
7 }
unsigned wint_t
Definition: wctype.h:11
int iswblank(wint_t wc)
Definition: iswblank.c:4
int isblank(int ch)
Checks if the given character is a blank character.
Definition: isblank.c:5