add creal/cimag macros in complex.h (and use them in the functions defs)
[musl] / src / ctype / iswblank.c
1 #include <wchar.h>
2 #include <wctype.h>
3 #include <ctype.h>
4
5 int iswblank(wint_t wc)
6 {
7         return isblank(wc);
8 }