NOMBRE

index, rindex - localizan un carácter en una cadena de caracteres

BIBLIOTECA

Biblioteca Estándar C ( libc, -lc)

SINOPSIS

#include <strings.h>
[[a extinguir]] char *index(const char *s, int c);
[[a extinguir]] char *rindex(const char *s, int c);

DESCRIPCIÓN

index() es idéntico a strchr(3).
rindex() es idéntico a strrchr(3).
Emplee strchr(3) y strrchr(3) en lugar de estas funciones.

ESTÁNDARES

4.3BSD; marked as LEGACY in POSIX.1-2001. POSIX.1-2008 removes the specifications of index() and rindex(), recommending strchr(3) and strrchr(3) instead.

VÉASE TAMBIÉN

strchr(3), strrchr(3)

TRADUCCIÓN

La traducción al español de esta página del manual fue creada por Gerardo Aburruzaga García <[email protected]> y Marcos Fouces <[email protected]>
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 [email protected]

Recommended readings

Pages related to index you should read also: