blob: 1527a47d76f1c9167e003ce108892eba5985e996 [file] [log] [blame]
#include <wctype.h>
#include "libc.h"
static const unsigned char table[] = {
#include "punct.h"
};
int iswpunct(wint_t wc) {
if (wc < 0x20000U)
return (table[table[wc >> 8] * 32 + ((wc & 255) >> 3)] >> (wc & 7)) & 1;
return 0;
}
int __iswpunct_l(wint_t c, locale_t l) {
return iswpunct(c);
}
weak_alias(__iswpunct_l, iswpunct_l);