strrchr()
Syntax:
#include <string.h> char *strrchr( const char *str, int ch );
Description:
The function strrchr() returns a pointer to the last occurrence of ch in str, or NULL if no match is found.
Related Topics:
strpbrk(), strspn(), strstr(), strtok()



