summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/wchar.h
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2021-10-08 01:22:27 +0200
committerBrian Gianforcaro <b.gianfo@gmail.com>2021-10-15 21:50:19 -0700
commitb0babd062eda9e18fcc2450317f83912e3b84c43 (patch)
treeee3a2ae0ef82a53131b9bfbd412ee7a429575b48 /Userland/Libraries/LibC/wchar.h
parentfccb06b2cdbe4fa67e8f584d2f9416a11ed5bc3c (diff)
downloadserenity-b0babd062eda9e18fcc2450317f83912e3b84c43.zip
LibC: Implement wcsrtombs
Diffstat (limited to 'Userland/Libraries/LibC/wchar.h')
-rw-r--r--Userland/Libraries/LibC/wchar.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/wchar.h b/Userland/Libraries/LibC/wchar.h
index 958b992bf8..b7f2008415 100644
--- a/Userland/Libraries/LibC/wchar.h
+++ b/Userland/Libraries/LibC/wchar.h
@@ -56,5 +56,6 @@ double wcstod(const wchar_t*, wchar_t**);
long double wcstold(const wchar_t*, wchar_t**);
int swprintf(wchar_t*, size_t, const wchar_t*, ...);
int wcwidth(wchar_t);
+size_t wcsrtombs(char*, const wchar_t**, size_t, mbstate_t*);
__END_DECLS