STRSPN

Section: Manual del Programador de Linux (3)
Updated: 12 de Abril de 1993
Index Return to Main Contents


 

NOMBRE

strspn, strcspn - busca un conjunto de caracteres en una cadena  

SINOPSIS

#include <string.h>

size_t strspn(const char *s, const char *acepta);

size_t strcspn(const char *s, const char *rechaza);
 

DESCRIPCIÓN

La función strspn() calcula la longitud del segmento inicial de s que consta únicamente de caracteres en acepta.

La función strcspn() calcula la longitud del segmento inicial de s que consta únicamente de caracteres que no aparecen en rechaza.  

VALOR DEVUELTO

La función strspn() devuelve el número de caracteres del segmento inicial de s que contiene sólo caracteres perteneciantes a acepta.

La función strcspn() devuelve el número de caracteres del segmento inicial de s que consta únicamente de caracteres que no están en rechaza.  

CONFORME A

SVID 3, POSIX, BSD 4.3, ISO 9899  

VÉASE TAMBIÉN

index

(3), memchr(3), rindex(3), strchr(3), strpbrk(3), strsep(3), strstr(3), strtok(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:25 GMT, January 22, 2005