OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sh_ctype
(Results
1 - 1
of
1
) sorted by relevancy
/src/bin/sh/
syntax.h
83
#define
sh_ctype
(c) (is_type+SYNBASE)[(int)(c)]
macro
84
#define is_upper(c) (
sh_ctype
(c) & ISUPPER)
85
#define is_lower(c) (
sh_ctype
(c) & ISLOWER)
86
#define is_alpha(c) (
sh_ctype
(c) & (ISUPPER|ISLOWER))
87
#define is_name(c) (
sh_ctype
(c) & (ISUPPER|ISLOWER|ISUNDER))
88
#define is_in_name(c) (
sh_ctype
(c) & (ISUPPER|ISLOWER|ISUNDER|ISDIGIT))
89
#define is_special(c) (
sh_ctype
(c) & (ISSPECL|ISDIGIT))
90
#define is_space(c) (
sh_ctype
(c) & ISSPACE)
Completed in 12 milliseconds
Indexes created Wed Oct 22 06:10:02 GMT 2025