table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
index(3) | Library Functions Manual | index(3) |
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¶
TRADUCCIÓN¶
La traducción al español de esta página del manual fue creada por Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es> y Marcos Fouces <marcos@debian.org>
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 debian-l10n-spanish@lists.debian.org.
5 Enero 2023 | Páginas de Manual de Linux 6.03 |