Provided by: manpages-es-dev_4.13-4_all bug

NOMBRE

       wcpncpy  -  copia una cadena de caracteres anchos de tamaño fijo, devolviendo un puntero a
       su final

SINOPSIS

       #include <wchar.h>

       wchar_t *wcpncpy(wchar_t *dest, const wchar_t *src, size_t n);

   Requisitos de Macros de Prueba de Características para glibc (véase feature_test_macros(7)):

       wcpncpy():
           Desde glibc 2.10:
               _POSIX_C_SOURCE >= 200809L
           Antes de glibc 2.10:
               _GNU_SOURCE

DESCRIPCIÓN

       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 en dest para, al menos, n caracters anchos.

VALOR DEVUELTO

       wcpncpy()  returns a pointer to the last wide character written, that is, dest+n-1.

ATRIBUTOS

       Para obtener una explicación de los términos usados en esta sección, véase attributes(7).

       ┌──────────┬────────────────────┬───────────────────┐
       │InterfazAtributoValor             │
       ├──────────┼────────────────────┼───────────────────┤
       │wcpncpy() │ Seguridad del hilo │ Multi-hilo seguro │
       └──────────┴────────────────────┴───────────────────┘

CONFORME A

       POSIX.1-2008.

VÉASE TAMBIÉN

       stpncpy(3), wcsncpy(3)

COLOFÓN

       Esta página es parte de la versión 5.10 del proyecto Linux man-pages. Puede encontrar  una
       descripción  del  proyecto, información sobre cómo informar errores y la última versión de
       esta página en https://www.kernel.org/doc/man-pages/.

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
       ⟨https://www.gnu.org/licenses/gpl-3.0.html⟩ 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 ⟨⟩.