MEMCHR

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


 

NOMBRE

memchr - busca en memoria un carácter  

SINOPSIS

#include <string.h>

void *memchr(const void *s, int c, size_t n);
 

DESCRIPCIÓN

La función memchr() rastrea los primeros n bytes del área de memoria apuntada por s buscando el carácter c. La operación acaba al llegarse al primer byte que concuerde con c (interpretado como un carácter sin signo).  

VALOR DEVUELTO

La función memchr() devuelve un puntero al byte que concuerda, o NULL si el carácter no está en el área de memoria especificada.  

CONFORME A

SVID 3, BSD 4.3, ISO 9899  

VÉASE TAMBIÉN

index

(3), rindex(3), strchr(3), strpbrk(3), strrchr(3), strsep(3), strspn(3), strstr(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