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