Searched refs:iscntrl (Results 1 - 22 of 22) sorted by relevance

/ast/src/cmd/ncsl/
H A Dncsl.c54 #define JUNK(c) (iscntrl(c)||!isprint(c))
/ast/src/lib/libpp/
H A Dpptrace.c67 if (iscntrl(c) || !isprint(c)) sfsprintf(buf, sizeof(buf), "`%03o'", c);
/ast/src/cmd/3d/
H A Dstrmatch.c89 #undef iscntrl macro
90 #define iscntrl(x) iswcntrl(x) macro
514 if (iscntrl(sc))
/ast/src/lib/libcodex/
H A Dcode-qp.c268 else if (isprint(c) && !iscntrl(c) && c != '=')
/ast/src/lib/libcs/
H A Dmsglist.c52 if (iscntrl(c) || !isprint(c) || c == '"')
/ast/src/lib/libast/regex/
H A Dreglib.h216 #define iswcntrl(x) iscntrl(x)
/ast/src/cmd/mailx/
H A Dhead.c350 if (isspace(c) || iscntrl(c) || !isprint(c) || c == '#' || c == '$' || c == '&' || c == '*' || c == '(' || c == ')' || c == '"' || c == '\'' || c == '`' || c == '<' || c == '>' || c == '?' || c == '[' || c == ']' || c == '{' || c == '}')
H A Dlocal.c290 if (iscntrl(c) || !isprint(c))
H A Dcollect.c548 if ((iscntrl(lc) || !isprint(lc)) && !isspace(lc))
/ast/src/cmd/re/
H A Dtestfmt.c145 if (!iscntrl(c) && isprint(c))
H A Dtestfnmatch.c236 if (!iscntrl(c) && isprint(c))
H A Dtestglob.c312 if (!iscntrl(c) && isprint(c))
H A Dtestmatch.c265 if (!iscntrl(c) && isprint(c))
H A Dtestregex.c640 if (!iscntrl(c) && isprint(c))
/ast/src/lib/libast/astsa/
H A Dstrmatch.c394 if (iscntrl(sc))
/ast/src/lib/libuu/
H A Duulib.c481 else if (isprint(c) && !iscntrl(c) && c != '=')
1505 if (isspace(*s) || iscntrl(*s) || !isprint(*s) || *s == '/' || *s == '\\')
/ast/src/cmd/ksh93/edit/
H A Dedit.c60 # define is_cntrl(c) ((c<=STRIP) && iscntrl(c))
63 # define is_cntrl(c) iscntrl(c)
/ast/src/cmd/builtin/
H A Dpr.c629 if ((iscntrl(c) || !isprint(c)) && c != '\t' && c != '\n' || c == '\\')
/ast/src/cmd/html/
H A Dhtml2rtf.c1188 if (iscntrl(c))
/ast/src/cmd/std/
H A Dls.c440 *t++ = (iscntrl(c) || !isprint(c)) ? '?' : c;
/ast/src/lib/libast/misc/
H A Doptget.c1469 for (t = s; t < e && !isspace(*t) && !iscntrl(*t); t++);
2165 for (t = s; *t && !isspace(*t) && !iscntrl(*t); t++);
/ast/src/lib/libast/comp/
H A Dsetlocale.c499 return w >= 0 && w <= 255 && !iscntrl(w) ? 1 : -1;

Completed in 67 milliseconds