wcpcpy(3) Library Functions Manual wcpcpy(3) NOMBRE wcpcpy - copia una cadena de caracteres anchos, devolviendo un puntero a su final BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include wchar_t *wcpcpy(wchar_t *restrict dest, const wchar_t *restrict src); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): wcpcpy(): Desde glibc 2.10: _POSIX_C_SOURCE >= 200809L Antes de glibc 2.10: _GNU_SOURCE DESCRIPCION The wcpcpy() function is the wide-character equivalent of the stpcpy(3) function. It copies the wide-character string pointed to by src, including the terminating null wide character (L'\0'), to the array pointed to by dest. Las cadenas no se pueden solapar. El programador tiene que asegurarse de que hay espacio para, al menos, wcslen(src)+1 caracteres anchos en dest. VALOR DEVUELTO wcpcpy() returns a pointer to the end of the wide-character string dest, that is, a pointer to the terminating null wide character. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |wcpcpy() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES POSIX.1-2008. VEASE TAMBIEN strcpy(3), wcscpy(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Pedro Pablo Fabrega y Juan Piernas Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 wcpcpy(3)