OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AsciiOnly
(Results
1 - 3
of
3
) sorted by relevancy
/src/bin/csh/
char.h
89
#define Isalpha(c) (cmap(c,_LET) && !(((c) & META) &&
AsciiOnly
))
90
#define Islower(c) (cmap(c,_LOW) && !(((c) & META) &&
AsciiOnly
))
91
#define Isupper(c) (cmap(c, _UP) && !(((c) & META) &&
AsciiOnly
))
95
#define Isalnum(c) (cmap(c, _DIG|_LET) && !(((c) & META) &&
AsciiOnly
))
96
#define Iscntrl(c) (cmap(c,_CTR) && !(((c) & META) &&
AsciiOnly
))
97
#define Isprint(c) (!cmap(c,_CTR) && !(((c) & META) &&
AsciiOnly
))
csh.c
140
int
AsciiOnly
;
266
AsciiOnly
= 1;
274
AsciiOnly
= k > 0377;
277
AsciiOnly
= getenv("LANG") == NULL && getenv("LC_CTYPE") == NULL;
1369
* XXX: When we are in
AsciiOnly
we want all characters >= 0200 to
csh.h
214
extern int
AsciiOnly
; /* If set only 7 bits is expected in characters */
Completed in 21 milliseconds
Indexes created Fri Oct 17 03:10:13 GMT 2025