NOMBRE
wmemmove − copia un vector de caracteres anchos
SINOPSIS
#include <wchar.h>
wchar_t *wmemmove (wchar_t *dest, const wchar_t *src, size_t n);
DESCRIPCIÓN
La función wmemmove es equivalente para caracteres anchos a la función memmove. Copia n caracteres anchos del vector src al vector dest. Los vectores se pueden solapar.
El programador debe asegurar que hay espacio para al menos n caracteres anchos en dest.
VALOR DEVUELTO
wmemmove devuelve dest.
CONFORME A
ISO/ANSI C, UNIX98