Home
last modified time | relevance | path

Searched defs:ISSPACE (Results 1 – 5 of 5) sorted by relevance

/external/curl/lib/
Dcurl_ctype.h45 #define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d))) macro
/external/giflib/
Dgetarg.c124 #define ISSPACE(x) ((x) <= ' ') /* Not conventional - but works fine! */ macro
/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/cares/cares/src/lib/
Dsetup_once.h275 #define ISSPACE(x) (isspace((int) ((unsigned char)x))) macro
/external/harfbuzz_ng/src/
Dhb-algs.hh949 static inline bool ISSPACE (unsigned char c) in ISSPACE() function
/external/coreboot/util/kconfig/
Dregex.c154 #define ISSPACE(c) (isascii (c) && isspace (c)) macro