C/wctype.h/iswblank
Версия от 14:20, 25 мая 2010; (обсуждение)
int iswblank(wint_t ch) vs isblank()
#include <stdio.h>
#include <wctype.h>
int main(void)
{
int wc;
for (wc=0; wc <= 0xFF; wc++) {
printf("%3d", wc);
printf(" %#4x ", wc);
printf("%3s", iswblank(wc) ? "AN" : " ");
putchar("\n");
}
}