index, rindex
locate character in string
- Provided by: manpages-dev (Version: 6.9.1-1)
- Source: manpages
- Report a bug
locate character in string
Standard C library (libc, -lc)
#include <strings.h>
[[deprecated]] char *index(const char *s, int c); [[deprecated]] char *rindex(const char *s, int c);
index() is identical to strchr(3).
rindex() is identical to strrchr(3).
Use strchr(3) and strrchr(3) instead of these functions.
None.
4.3BSD; marked as LEGACY in POSIX.1-2001. Removed in POSIX.1-2008, recommending strchr(3) and strrchr(3) instead.