summaryrefslogtreecommitdiff
path: root/ctype-function-parameter-not-representable.c
blob: 0fb5698fc1cb93486549caeb48774ae27d199c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <ctype.h>
#include <limits.h>

int main(void)
{
	int c = UCHAR_MAX + 1;
	if (c == EOF) {
		c++;
	}
	return isalpha(c);
}