STRING

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


 

NOMBRE

strcasecmp, strcat, strchr, strcmp, strcoll, strcpy, strcspn, strdup, strfry, strlen, strncat, strncmp, strncpy, strncasecmp, strpbrk, strrchr, strsep, strspn, strstr, strtok, strxfrm, index, rindex - operaciones con cadenas de caracteres  

SINOPSIS

#include <string.h>

int strcasecmp(const char *s1, const char *s2);

char *strcat(char *dest, const char *orig);

char *strchr(const char *s, int c);

int strcmp(const char *s1, const char *s2);

int strcoll(const char *s1, const char *s2);

char *strcpy(char *dest, const char *orig);

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

char *strdup(const char *s);

char *strfry(char *string);

size_t strlen(const char *s);

char *strncat(char *dest, const char *orig, size_t n);

int strncmp(const char *s1, const char *s2, size_t n);

char *strncpy(char *dest, const char *orig, size_t n);

int strncasecmp(const char *s1, const char *s2, size_t n);

char *strpbrk(const char *s, const char *accept);

char *strrchr(const char *s, int c);

char *strsep(char **stringp, const char *delim);

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

char *strstr(const char *haystack, const char *needle);

char *strtok(char *s, const char *delim);

size_t strxfrm(char *dest, const char *orig, size_t n);

char *index(const char *s, int c);

char *rindex(const char *s, int c);
 

DESCRIPCIÓN

Las funciones de manejo de cadenas de caracteres realizan operaciones en cadenas de caracteres acabadas en el carácer de código cero. Consulte las páginas individuales del Manual para ver las descripciones de cada función.  

CONSULTE TAMBÉN

index

(3), rindex(3), strcasecmp(3), strcat(3), strchr(3), strcmp(3), strcoll(3), strcpy(3), strcspn(3), strdup(3), strfry(3), strlen(3), strncat(3), strncmp(3), strncpy(3), strncasecmp(3), strpbrk(3), strrchr(3), strsep(3), strspn(3), strstr(3), strtok(3), strxfrm(3)


 

Index

NOMBRE
SINOPSIS
DESCRIPCIÓN
CONSULTE TAMBÉN

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