Symbol: wcrtomb
headers/posix/uchar.h
33
return wcrtomb(dest, tmp, mbState);
headers/posix/uchar.h
47
return wcrtomb(dest, (wchar_t)wc, mbState);
headers/posix/wchar.h
95
extern size_t wcrtomb(char *dest, wchar_t wc, mbstate_t *mbState);
src/add-ons/kernel/file_systems/ntfs/libntfs/unistr.c
968
cnt = wcrtomb(mbs + o, wc, &mbstate);
src/libs/bsd/vis.c
544
clen = wcrtomb(mbdst, *dst, &mbstate);
src/libs/iconv/loop_wchar.h
148
size_t count = wcrtomb(buf+bufcount,*inptr,&state);
src/libs/iconv/loop_wchar.h
247
size_t bufcount = wcrtomb(buf,(wchar_t)0,&state);
src/system/libroot/posix/glibc/regex/regex_internal.h
169
# define __wcrtomb wcrtomb
src/system/libroot/posix/glibc/wcsmbs/wchar.h
164
extern size_t wcrtomb (char *__restrict __s, wchar_t __wc,
src/system/libroot/posix/glob.c
1071
clen = wcrtomb(buf, CHAR(*str), &mbs);
src/system/libroot/posix/wchar/wcrtomb.cpp
81
B_DEFINE_WEAK_ALIAS(__wcrtomb, wcrtomb);
src/tests/system/libroot/posix/gnulib-test-wcrtomb.c
100
ret = wcrtomb (buf, btowc (c), NULL);
src/tests/system/libroot/posix/gnulib-test-wcrtomb.c
110
ret = wcrtomb (NULL, '\0', NULL);
src/tests/system/libroot/posix/gnulib-test-wcrtomb.c
112
ret = wcrtomb (NULL, btowc ('x'), NULL);
src/tests/system/libroot/posix/gnulib-test-wcrtomb.c
38
ret = wcrtomb (buf, wc, NULL);
src/tests/system/libroot/posix/gnulib-test-wcrtomb.c
43
ret = wcrtomb (NULL, wc, NULL);
src/tests/system/libroot/posix/gnulib-test-wcrtomb.c
65
ret = wcrtomb (buf, 0, NULL);
src/tests/system/libroot/posix/tst-wcrtomb.c
66
n = wcrtomb(buf, wc, &s);