wmemmove

Autres langues

Langue: es

Autres versions - même langue

Version: 25 julio 1999 (fedora - 25/11/07)

Section: 3 (Bibliothèques de fonctions)

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

VÉASE TAMBIÉN

memmove(3), wmemcpy(3)