blob: bfa01b5b34749eb93a3e22ce0860ba91143774d4 (
plain) (
tree)
|
|
#include <wchar.h>
/* collate only by code points */
size_t wcsxfrm(wchar_t *restrict dest, const wchar_t *restrict src, size_t n)
{
size_t l = wcslen(src);
if (l >= n) {
wmemcpy(dest, src, n-1);
dest[n-1] = 0;
} else wcscpy(dest, src);
return l;
}
|