blob: 0f031eac55681c092ae65b389cc79570a8711469 [file] [log] [blame]
#include <wctype.h>
int iswalpha(wint_t wc)
{
return (32U|wc)-'a'<26;
}