OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ISASCII
(Results
1 - 2
of
2
) sorted by null
/ndk/sources/host-tools/sed-4.2.1/
basicdefs.h
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)
[
all
...]
/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
...]
Completed in 379 milliseconds