summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale/wcstombs.c
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2004-07-21 10:54:57 +0000
committertjr <tjr@FreeBSD.org>2004-07-21 10:54:57 +0000
commit5b4f25c6e9c9b37dcda00bd4a94aabeffeed31b0 (patch)
tree1c3c81fbcfab80a357977aa6546dc3166c9d5257 /lib/libc/locale/wcstombs.c
parentf892b6158fb86942cd8cee58017eded760b7546d (diff)
downloadFreeBSD-src-5b4f25c6e9c9b37dcda00bd4a94aabeffeed31b0.zip
FreeBSD-src-5b4f25c6e9c9b37dcda00bd4a94aabeffeed31b0.tar.gz
Implement the GNU extensions of mbsnrtowcs() and wcsnrtombs(). These are
convenient when the source string isn't null-terminated. Implement the other conversion functions (mbstowcs(), mbsrtowcs(), wcstombs(), wcsrtombs()) in terms of these new functions.
Diffstat (limited to 'lib/libc/locale/wcstombs.c')
-rw-r--r--lib/libc/locale/wcstombs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/locale/wcstombs.c b/lib/libc/locale/wcstombs.c
index 5bb5954..acd0051 100644
--- a/lib/libc/locale/wcstombs.c
+++ b/lib/libc/locale/wcstombs.c
@@ -27,6 +27,7 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include <limits.h>
#include <stdlib.h>
#include <wchar.h>
#include "mblocal.h"
@@ -38,5 +39,5 @@ wcstombs(char * __restrict s, const wchar_t * __restrict pwcs, size_t n)
mbstate_t mbs;
mbs = initial;
- return (__wcsrtombs(s, &pwcs, n, &mbs));
+ return (__wcsnrtombs(s, &pwcs, SIZE_T_MAX, n, &mbs));
}
OpenPOWER on IntegriCloud