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

NOMBRE

       memccpy - copia un área de memoria

SINOPSIS

       #include <string.h>

       void *memccpy(void *dest, const void *src, int c, size_t n);

DESCRIPCIÓN

       The  memccpy()   function  copies no more than n bytes from memory area src to memory area dest, stopping
       when the character c is found.

       If the memory areas overlap, the results are undefined.

VALOR DEVUELTO

       The memccpy()  function returns a pointer to the next character in dest after c, or NULL  if  c  was  not
       found in the first n characters of src.

ATRIBUTOS

       Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
       ┌───────────┬────────────────────┬───────────────────┐
       │ InterfazAtributoValor             │
       ├───────────┼────────────────────┼───────────────────┤
       │ memccpy() │ Seguridad del hilo │ Multi-hilo seguro │
       └───────────┴────────────────────┴───────────────────┘

CONFORME A

       POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.

VÉASE TAMBIÉN

       bcopy(3), bstring(3), memcpy(3), memmove(3), strcpy(3), strncpy(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  Gerardo  Aburruzaga  García
       <gerardo.aburruzaga@uca.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.

GNU                                            15 Septiembre 2017                                     MEMCCPY(3)