Searched refs:iscntrl (Results 1 – 25 of 90) sorted by relevance
1234
/openbsd/gnu/llvm/libcxx/include/ |
H A D | cctype | 22 int iscntrl(int c); 67 #ifdef iscntrl 68 #undef iscntrl 115 using ::iscntrl _LIBCPP_USING_IF_EXISTS;
|
H A D | ctype.h | 47 #undef iscntrl
|
/openbsd/lib/libc/gen/ |
H A D | isctype.c | 66 #undef iscntrl 68 iscntrl(int c) in iscntrl() function 72 DEF_STRONG(iscntrl);
|
H A D | charclass.h | 17 { "cntrl", iscntrl },
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/c_std/ |
H A D | std_cctype.h | 54 #undef iscntrl 70 using ::iscntrl;
|
/openbsd/gnu/gcc/libstdc++-v3/include/c_std/ |
H A D | std_cctype.h | 56 #undef iscntrl 72 using ::iscntrl;
|
/openbsd/include/ |
H A D | ctype.h | 70 int iscntrl(int); 127 __only_inline int iscntrl(int _c) in iscntrl() function 241 return iscntrl(_c); in iscntrl_l()
|
/openbsd/lib/libc/hidden/ |
H A D | ctype.h | 24 __only_inline int iscntrl(int _c); 68 PROTO_NORMAL(iscntrl);
|
/openbsd/lib/libcurses/base/ |
H A D | lib_insch.c | 90 (sp != 0 && sp->_legacy_coding && !iscntrl(ch8)))) { in NCURSES_EXPORT() 106 } else if (iscntrl(ch8)) { in NCURSES_EXPORT()
|
/openbsd/regress/lib/libc/locale/check_isw/ |
H A D | check_isw.c | 58 check_bool(iscntrl(i), iswcntrl(i), '4'); in test1() 108 check_bool(iscntrl(s[j]), iswcntrl(c), '4'); in test2()
|
/openbsd/usr.bin/rsync/ |
H A D | charclass.h | 17 { "cntrl", iscntrl },
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/c_compatibility/ |
H A D | ctype.h | 37 using std::iscntrl;
|
/openbsd/gnu/gcc/libstdc++-v3/include/c_compatibility/ |
H A D | ctype.h | 37 using std::iscntrl;
|
/openbsd/usr.bin/cu/ |
H A D | input.c | 78 if (!iscntrl((u_char)c)) in get_input()
|
/openbsd/usr.bin/less/ |
H A D | charset.c | 177 return (iscntrl((unsigned char)c)); in control_char() 178 return (iscntrl((unsigned char)c) || !isprint((unsigned char)c)); in control_char()
|
/openbsd/bin/csh/ |
H A D | char.h | 72 #define Iscntrl(c) (((c) & QUOTE) ? 0 : iscntrl((unsigned char) (c)))
|
/openbsd/gnu/lib/libstdc++/libstdc++/config/os/windiss/ |
H A D | ctype_inline.h | 56 __ret = iscntrl(__c); in is()
|
/openbsd/gnu/gcc/libstdc++-v3/config/os/windiss/ |
H A D | ctype_inline.h | 63 __ret = iscntrl(__c); in _GLIBCXX_BEGIN_NAMESPACE()
|
/openbsd/lib/libc/locale/ |
H A D | isctype_l.c | 51 return iscntrl(c); in iscntrl_l()
|
/openbsd/gnu/lib/libstdc++/libstdc++/config/os/generic/ |
H A D | ctype_inline.h | 72 __testis = iscntrl(__c); in is()
|
/openbsd/gnu/gcc/libstdc++-v3/config/os/generic/ |
H A D | ctype_inline.h | 77 __testis = iscntrl(__c); in _GLIBCXX_BEGIN_NAMESPACE()
|
/openbsd/usr.bin/mail/ |
H A D | tty.c | 306 else if (iscntrl(c)) in tty_flush() 401 } else if (iscntrl(c)) { in tty_visc()
|
/openbsd/bin/cat/ |
H A D | cat.c | 189 if (iscntrl(ch)) { in cook_buf()
|
/openbsd/gnu/llvm/libcxx/include/__support/xlocale/ |
H A D | __posix_l_fallback.h | 36 inline _LIBCPP_HIDE_FROM_ABI_C int iscntrl_l(int __c, locale_t) { return ::iscntrl(__c); } in iscntrl_l()
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/ |
H A D | localefwd.h | 66 iscntrl(_CharT, const locale&);
|
1234