Home | History | Annotate | Download | only in libiberty

Lines Matching defs:ISASCII

207    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
211 macros don't need to be guarded with references to isascii. ...
212 Defining isascii to 1 should let any compiler worth its salt
216 # undef ISASCII
217 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
218 # define ISASCII(c) 1
220 # define ISASCII(c) isascii(c)
224 # define ISBLANK(c) (ISASCII (c) && isblank (c))
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
235 # define ISPRINT(c) (ISASCII (c) && isprint (c))
236 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
237 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
238 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
239 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
240 # define ISLOWER(c) (ISASCII (c) && islower (c))
241 # define ISPUNCT(c) (ISASCII (c) && ispunct (c))
242 # define ISSPACE(c) (ISASCII (c) && isspace (c))
243 # define ISUPPER(c) (ISASCII (c) && isupper (c))
244 # define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))