Symbol: wcstombs
common/dist/zlib/gzlib.c
202
len = wcstombs(NULL, path, 0);
common/dist/zlib/gzlib.c
214
wcstombs(state->path, path, len + 1);
common/dist/zlib/gzlib.c
55
wcstombs(buf, msgbuf, chars + 1); /* assumes buf is big enough */
common/dist/zlib/test/minigzip.c
117
wcstombs(buf, msgbuf, chars + 1);
include/stdlib.h
135
size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t);
lib/libedit/TEST/wtc1.c
44
int needed = wcstombs(0, wstr, 0) + 1;
lib/libedit/TEST/wtc1.c
49
wcstombs(buf.str, wstr, needed);
lib/libedit/keymacro.c
599
wcstombs(unparsbuf, fp->name, sizeof(unparsbuf));
lib/libedit/vi.c
1033
wcstombs(cp, line, TMP_BUFSIZ - 1);
sys/arch/hpcmips/stand/libsa/devopen.c
83
if (wcstombs(name, (TCHAR*)fname, sizeof(name)) == (size_t)-1) {
sys/arch/hpcmips/stand/pbsdboot/main.c
1118
if (wcstombs(options, woptions, sizeof(options)) == (size_t)-1 ||
sys/arch/hpcmips/stand/pbsdboot/main.c
1119
wcstombs(kernel_name, wkernel_name, sizeof(kernel_name))
sys/arch/hpcmips/stand/pbsdboot/print.c
61
n = wcstombs(ascbuf, buffer, sizeof(ascbuf));
tests/lib/libc/locale/t_mbstowcs.c
211
REQUIRE_ERRNO((ssize_t)wcstombs(buf, wbuf, SIZE-1), -1);
tests/lib/libc/locale/t_wcstod.c
388
ATF_TC(wcstombs);
tests/lib/libc/locale/t_wcstod.c
389
ATF_TC_HEAD(wcstombs, tc)
tests/lib/libc/locale/t_wcstod.c
393
ATF_TC_BODY(wcstombs, tc)
tests/lib/libc/locale/t_wcstod.c
405
n = wcstombs(NULL, t->wcs, 0);
tests/lib/libc/locale/t_wcstod.c
408
(void)wcstombs(buf, t->wcs, n + 1);
tests/lib/libc/locale/t_wcstod.c
479
ATF_TP_ADD_TC(tp, wcstombs);