wcpncpy(3) Library Functions Manual wcpncpy(3) NOMBRE wcpncpy - copia una cadena de caracteres anchos de tamano fijo, devolviendo un puntero a su final BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include wchar_t *wcpncpy(wchar_t dest[restrict .n], const wchar_t src[restrict .n], size_t n); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): wcpncpy(): Desde glibc 2.10: _POSIX_C_SOURCE >= 200809L Antes de glibc 2.10: _GNU_SOURCE DESCRIPCION The wcpncpy() function is the wide-character equivalent of the stpncpy(3) function. It copies at most n wide characters from the wide-character string pointed to by src, including the terminating null wide (L'\0'), to the array pointed to by dest. Exactly n wide characters are written at dest. If the length wcslen(src) is smaller than n, the remaining wide characters in the array pointed to by dest are filled with L'\0' characters. If the length wcslen(src) is greater than or equal to n, the string pointed to by dest will not be L'\0' terminated. Las cadenas no se pueden solapar. El programador debe asegurar que hay espacio para al menos n caracteres anchos en dest. VALOR DEVUELTO wcpncpy() returns a pointer to the last wide character written, that is, dest+n-1. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |wcpncpy() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES POSIX.1-2008. VEASE TAMBIEN stpncpy(3), wcsncpy(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 wcpncpy(3)