Searched refs:mbtowc (Results 1 - 24 of 24) sorted by relevance

/macosx-10.10.1/nano-12/src/
H A Dchars.c91 if (mbtowc(&wc, c, MB_CUR_MAX) < 0) {
92 mbtowc(NULL, NULL, 0);
111 if (mbtowc(&wc, c, MB_CUR_MAX) < 0) {
112 mbtowc(NULL, NULL, 0);
158 if (mbtowc(&wc, c, MB_CUR_MAX) < 0) {
159 mbtowc(NULL, NULL, 0);
177 int c_mb_len = mbtowc(&wc, c, MB_CUR_MAX);
180 mbtowc(NULL, NULL, 0);
245 if (mbtowc(&wc, c, MB_CUR_MAX) < 0) {
246 mbtowc(NUL
[all...]
/macosx-10.10.1/Libc-1044.1.2/locale/FreeBSD/
H A Dmbtowc.c28 __FBSDID("$FreeBSD: src/lib/libc/locale/mbtowc.c,v 1.11 2004/07/29 06:18:40 tjr Exp $");
56 mbtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n) function
/macosx-10.10.1/ncurses-44/ncurses/ncurses/widechar/
H A Dcharable.c74 if (mbtowc(&convert, temp, 1) >= 0)
H A Dlib_get_wch.c46 #define reset_mbytes(state) mblen(NULL, 0), mbtowc(NULL, NULL, 0)
49 (int) mbtowc(&wch, buffer, length)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dwc.c36 mbtowc(wchar_t* t, const char* s, size_t n) function
52 return mbtowc(t, s, n);
H A Dsetlocale.c61 #undef mbtowc macro
187 #define mbtowc 0 macro
2250 else if ((locales[cp->internal]->flags & LC_default) || (ast.mb_cur_max = MB_CUR_MAX) <= 1 || !(ast.mb_len = mblen) || !(ast.mb_towc = mbtowc))
2526 , ast.mb_towc == debug_mbtowc ? " debug_mbtowc" : ast.mb_towc == utf8_mbtowc ? " utf8_mbtowc" : ast.mb_towc == mbtowc ? " mbtowc"
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dchartype.h67 #define ct_mbtowc mbtowc
68 #define ct_mbtowc_reset mbtowc(0,0,0)
/macosx-10.10.1/Libc-1044.1.2/include/
H A Dstdlib.h163 int mbtowc(wchar_t * __restrict, const char * __restrict, size_t);
385 #pragma GCC poison mbstowcs mbtowc wcstombs wctomb
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dutf-8-conv.c47 #include <ac/stdlib.h> /* For wctomb, wcstombs, mbtowc, mbstowcs */
333 int mbtowc(wchar_t *pwc, const char *s, size_t n) { return mbrtowc(pwc, s, n, NULL); } function
421 f_mbtowc = mbtowc; /* use the local ANSI C function */
/macosx-10.10.1/libedit-40/src/
H A Dchartype.h67 #define ct_mbtowc mbtowc
68 #define ct_mbtowc_reset mbtowc(0,0,(size_t)0)
/macosx-10.10.1/libarchive-30/libarchive/tar/
H A Dutil.c72 /* TODO: Hack up a version of mbtowc for platforms with no wide
76 * #define mbtowc(wcp, p, n) ((*wcp = *p), 1)
135 /* Note: mbrtowc() has a cleaner API, but mbtowc() seems a bit
137 n = mbtowc(NULL, NULL, 1); /* Reset the shift state. */
147 if (try_wc && (n = mbtowc(&wc, p, length)) != -1) {
/macosx-10.10.1/ncurses-44/ncurses/test/
H A Dview.c84 #define reset_mbytes(state) mblen(NULL, 0), mbtowc(NULL, NULL, 0)
87 (int) mbtowc(&wch, buffer, length)
H A Dncurses.c128 #define reset_wchars(state) mblen(NULL, 0), mbtowc(NULL, NULL, 0)
139 #define reset_mbytes(state) mblen(NULL, 0), mbtowc(NULL, NULL, 0)
H A Dconfigure7085 mbtowc \
/macosx-10.10.1/Libc-1044.1.2/regex/TRE/lib/
H A Dtre-internal.h46 #define tre_mbrtowc(pwc, s, n, ps) (mbtowc((pwc), (s), (n)))
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtc.str.c87 ret = mbtowc(pwc, s, n);
H A Dsh.h97 #define reset_mbtowc() IGNORE(mbtowc(NULL, NULL, 0))
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfhdr.h340 #define mbrtowc(wp,s,n,mb) mbtowc(wp, s, n)
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_write_set_format_mtree.c324 l = mbtowc(&wc, p, size);
H A Darchive_write_disk.c1549 l = mbtowc(&wc, p, alen);
/macosx-10.10.1/lsof-53/lsof/
H A Dmisc.c1441 if ((mbtowc(&w, sp, sl) == lnc) && iswprint(w)) {
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dzle_refresh.c1364 if (mbtowc(&wc, dispptr, 1) == 1 /* paranoia */)
2578 if (mbtowc(&wc, dispptr, 1) == 1 /* paranoia */) {
/macosx-10.10.1/ncurses-44/ncurses/form/
H A Dfrm_driver.c4484 #define reset_mbytes(state) mblen(NULL, 0), mbtowc(NULL, NULL, 0)
4487 (int) mbtowc(&wch, buffer, length)
/macosx-10.10.1/ncurses-44/ncurses/
H A Dconfigure6922 for ac_func in putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc wcsrtombs mbsrtowcs wcstombs mbstowcs

Completed in 647 milliseconds