Home | History | Annotate | Download | only in libiberty

Lines Matching refs:ISASCII

204    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
208 macros don't need to be guarded with references to isascii. ...
209 Defining isascii to 1 should let any compiler worth its salt
213 # undef ISASCII
214 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
215 # define ISASCII(c) 1
217 # define ISASCII(c) isascii(c)
221 # define ISBLANK(c) (ISASCII (c) && isblank (c))
226 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
228 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
232 # define ISPRINT(c) (ISASCII (c) && isprint (c))
233 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
234 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
235 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
236 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
237 # define ISLOWER(c) (ISASCII (c) && islower (c))
238 # define ISPUNCT(c) (ISASCII (c) && ispunct (c))
239 # define ISSPACE(c) (ISASCII (c) && isspace (c))
240 # define ISUPPER(c) (ISASCII (c) && isupper (c))
241 # define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))