aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wcsncpy.c
blob: 6fd47c347b0082da7664139b144cfd0b042b77cb (plain) (blame)
1
2
3
4
5
6
7
#include "memory.h"

wchar_t *wcsncpy(wchar_t *destination, wchar_t const *source, size_t count)
{
	wcspncpy(destination, source, count);
	return destination;
}