| www.delorie.com/djgpp/doc/libc-2.01/libc_538.html | search |
#include <strings.h> char *rindex(const char *string, int ch);
Returns a pointer to the last occurrence of ch in string.
Note that the NULL character counts, so if you pass zero as
ch you'll get a pointer to the end of the string back.
A pointer to the character, or NULL if it wasn't found.
char *last_slash = rindex(filename, '/');
Go to the first, previous, next, last section, table of contents.
| prev next webmaster | delorie software privacy |
| Copyright © 1997 | Updated Apr 1997 |