summaryrefslogtreecommitdiff
path: root/src/ctype/isascii.c
blob: 3af0a10d4f0975c8082553601b83246f372e76fe (plain) (blame)
1
2
3
4
5
6
#include <ctype.h>

int isascii(int c)
{
	return !(c&~0x7f);
}