blob: 4f39a3167cb3a673375e30b6883ec8597c09601d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "memory.h"
#include <wchar.h>
size_t _wcsxfrm_wrap(wchar_t *restrict destination,
wchar_t const *restrict source, size_t count)
{
return wcsxfrm(destination, source, count);
}
|