MEMCCPY

Section: Manual del Programador de Linux (3)
Updated: 3 Marzo 1998
Index Return to Main Contents


 

NOMBRE

memccpy - copia un área de memoria  

SINOPSIS

#include <string.h>

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

DESCRIPCIÓN

La función memccpy() copia como mucho n bytes desde el área de memoria orig al área de memoria dest, parando cuando se encuentra el carácter c.  

VALOR DEVUELTO

La función memccpy() devuelve un puntero al siguiente carácter de dest tras c, o NULL si c no estaba en los n primeros caracteres de orig.  

CONFORME A

SVID 3, BSD 4.3  

VÉASE TAMBIÉN

bcopy

(3), memcpy(3), memmove(3), strcpy(3), strncpy(3)


 

Index

NOMBRE
SINOPSIS
DESCRIPCIÓN
VALOR DEVUELTO
CONFORME A
VÉASE TAMBIÉN

This document was created by man2html, using the manual pages.
Time: 06:16:26 GMT, January 22, 2005