diff options
Diffstat (limited to 'system/lib/libc/musl/src/string/wcpncpy.c')
-rw-r--r-- | system/lib/libc/musl/src/string/wcpncpy.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/string/wcpncpy.c b/system/lib/libc/musl/src/string/wcpncpy.c new file mode 100644 index 00000000..b667f6d6 --- /dev/null +++ b/system/lib/libc/musl/src/string/wcpncpy.c @@ -0,0 +1,6 @@ +#include <wchar.h> + +wchar_t *wcpncpy(wchar_t *restrict d, const wchar_t *restrict s, size_t n) +{ + return wcsncpy(d, s, n) + wcsnlen(s, n); +} |