blob: 8807bea2ce0662be006bf48ada0800505af1291b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include <ctype.h>
/** test whether a character is in the ASCII range **/
int isascii(int c)
{
SIGNAL_SAFE(0);
if (0 <= c && c <= 0177) {
return 1;
}
return 0;
}
__check_1(int, 0, isascii, int)
/***
tests whether ARGUMENT(c) is a 7-bit US-ASCII character.
***/
/*
RETURN(NONZERO, ARGUMENT(c) is between 0 and octal 0177 inclusive)
RETURN(ZERO, ARGUMENT(c) is outside of the ASCII range)
XOBSOLETE(700)
XOPEN(4)
*/
|