Home
last modified time | relevance | path

Searched refs:C_IFSWS (Results 1 – 5 of 5) sorted by relevance

/external/mksh/src/
Dlex.c418 } else if (ctype(c, C_IFSWS)) { in yylex()
1430 else if (!ctype(*s->str, C_IFS | C_IFSWS)) in getsc_line()
1438 while (*cp && ctype(*cp, C_IFSWS)) in getsc_line()
Deval.c953 !ctype(c, C_IFSWS))) { in expand()
981 !ctype(c, C_IFSWS) && Xlength(ds, dp) == 0) { in expand()
987 word = ctype(c, C_IFSWS) ? IFS_WS : IFS_NWS; in expand()
Dfuncs.c1592 #define is_ifsws(c) (ctype((c), C_IFS) && ctype((c), C_IFSWS)) in c_read()
1961 if (!ctype(ch, C_IFSWS)) in c_read()
Dmisc.c98 setctypes(TC_IFSWS, C_IFSWS); in initctypes()
Dsh.h1292 #define C_IFSWS BIT(4) /* \t \n (IFS white space) */ macro