strrchr is available since version 1.0.
Prototype:
string strrchr(string string, string c);
Parameters
string
Null-terminated source string
c
Character to be located
Description:
Find a character in a string.The null-terminating character is included in the search.
Return value:
Returns a string starting from the first occurence of c or an empty string if c is not found.