wcsncat(3) Library Functions Manual wcsncat(3) NOMBRE wcsncat - concatena dos cadenas de caracteres anchos BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include wchar_t *wcsncat(wchar_t dest[restrict .n], const wchar_t src[restrict .n], size_t n); DESCRIPCION The wcsncat() function is the wide-character equivalent of the strncat(3) function. It copies at most n wide characters from the wide-character string pointed to by src to the end of the wide-character string pointed to by dest, and adds a terminating null wide character (L'\0'). Las cadenas no se pueden solapar. El programador tiene que asegurarse de que hay espacio para, al menos, wcslen(dest)+n+1 caracteres anchos en dest. VALOR DEVUELTO wcsncat() devuelve dest. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |wcsncat() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES C11, POSIX.1-2008. HISTORIAL POSIX.1-2001, C99. VEASE TAMBIEN strncat(3), wcscat(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 wcsncat(3)