HomeSort by relevance Sort by last modified time
    Searched defs:ISASCII (Results 1 - 4 of 4) sorted by null

  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 61 # if defined STDC_HEADERS || !defined isascii
62 # define ISASCII(c) 1
64 # define ISASCII(c) isascii(c)
68 # define ISBLANK(c) (ISASCII (c) && isblank (c))
73 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
78 # define ISPRINT(c) (ISASCII (c) && isprint (c))
79 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
80 # define ISALNUM(c) (ISASCII (c) && isalnum (c)
    [all...]
  /external/c-ares/
setup_once.h 254 #define ISASCII(x) (isascii((int) ((unsigned char)x)))
  /external/curl/lib/
curl_setup_once.h 291 #define ISASCII(x) (isascii((int) ((unsigned char)x)))
  /toolchain/binutils/binutils-2.25/libiberty/
regex.c 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)
    [all...]

Completed in 1205 milliseconds