Home
last modified time | relevance | path

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

/dragonfly/contrib/tcsh-6/
H A Dsh.char.h198 # define Isprint(c) (((c) & QUOTE) ? 0 : iswprint(c)) macro
213 # define Isprint(c) ( (IsprintM(c)) || (_enable_mbdisp&&(IsmbyteU((c)))) ) macro
217 # define Isprint(c) (((Char)(c) & QUOTE) ? 0 : NXIsPrint((unsigned) (c))) macro
248 # define Isprint(c) (((Char)(c) & QUOTE) ? 0 : \ macro
255 # define Isprint(c) (((Char)(c) & QUOTE) ? 0 : isprint((tcshuc) (c))) macro
259 # define Isprint(c) ( (IsprintM(c)) || (_enable_mbdisp&&(IsmbyteU((c)))) ) macro
277 # define Isprint(c) ( (IsprintM(c)) || (_enable_mbdisp&&(IsmbyteU((c)))) ) macro
280 # define Isprint(c) (((Char)(c) & QUOTE) ? 0 : isprint( oem_it((tcshuc)(c)))) macro
298 # define Isprint(c) ( (IsprintM(c)) || (_enable_mbdisp&&(IsmbyteU((c)))) ) macro
301 # define Isprint(c) (!cmap((c),_CTR) && !(((c) & META) && AsciiOnly)) macro
H A Dtc.nls.c158 if ((w > 0 && !(Iscntrl(c) && (c & CHAR) < 0x100)) || (Isprint(c) && !nocomb)) in NLSClassify()
H A Ded.xmap.c596 } else if (ch == ' ' || (Isprint(ch) && !Isspace(ch))) { in unparsech()
840 else if (p == ' ' || (Isprint(p) && !Isspace(p))) in unparsestring()
H A Dsh.func.c1412 for (k = 0200; k <= 0377 && !Isprint(CTL_ESC(k)); k++) in dosetenv()
1619 for (k = 0200; k <= 0377 && !Isprint(CTL_ESC(k)); k++) in dounsetenv()
H A Ded.defns.c1823 if (Isprint(CTL_ESC(i))) { in ed_InitNLSMaps()