Provided by: manpages-es-dev_4.27.0-1_all bug

NOMBRE

       wcscat - concatena dos cadenas de caracteres anchos

BIBLIOTECA

       Biblioteca Estándar C (libc, -lc)

SINOPSIS

       #include <wchar.h>

       wchar_t *wcscat(wchar_t *restrict dest, const wchar_t *restrict src);

DESCRIPCIÓN

       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 explicación de los términos usados en esta sección, véase attributes(7).
       ┌──────────────────────────────────────────────────────────────┬────────────────────┬───────────────────┐
       │ InterfazAtributoValor             │
       ├──────────────────────────────────────────────────────────────┼────────────────────┼───────────────────┤
       │ wcscat()                                                     │ Seguridad del hilo │ Multi-hilo seguro │
       └──────────────────────────────────────────────────────────────┴────────────────────┴───────────────────┘

ESTÁNDARES

       C11, POSIX.1-2008.

HISTORIAL

       POSIX.1-2001, C99.

VÉASE TAMBIÉN

       strcat(3), wcpcpy(3), wcscpy(3), wcsncat(3)

TRADUCCIÓN

       La  traducción  al  español  de  esta  página  del  manual   fue   creada   por   Pedro   Pablo   Fábrega
       <pfabrega@arrakis.es> y Juan Piernas <piernas@ditec.um.es>

       Esta  traducción  es  documentación  libre;  lea  la GNU General Public License Version 3 o posterior con
       respecto a las condiciones de copyright.  No existe NINGUNA RESPONSABILIDAD.

       Si encuentra algún error en la traducción de esta página  del  manual,  envíe  un  correo  electrónico  a
       debian-l10n-spanish@lists.debian.org.

Páginas de Manual de Linux 6.9.1                  15 Junio 2024                                        wcscat(3)