Home | History | Annotate | Download | only in sed-4.2.1

Lines Matching refs:ISASCII

130    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
134 macros don't need to be guarded with references to isascii. ...
135 Defining isascii to 1 should let any compiler worth its salt
139 #undef ISASCII
140 #if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
141 # define ISASCII(c) 1
143 # define ISASCII(c) isascii(c)
147 # define ISBLANK(c) (ISASCII (c) && isblank (c))
153 #define ISPRINT(c) (ISASCII (c) && isprint (c))
154 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
155 #define ISALNUM(c) (ISASCII (c) && isalnum (c))
156 #define ISALPHA(c) (ISASCII (c) && isalpha (c))
157 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
158 #define ISLOWER(c) (ISASCII (c) && islower (c))
159 #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
160 #define ISSPACE(c) (ISASCII (c) && isspace (c))
161 #define ISUPPER(c) (ISASCII (c) && isupper (c))
162 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))