6 lines
74 B
C
6 lines
74 B
C
#include <wctype.h>
|
|
|
|
int iswalpha(wint_t wc)
|
|
{
|
|
return (32U|wc)-'a'<26;
|
|
}
|