1 /* Portable version of strrchr().
2 This function is in the public domain. */
6 strrchr -- return pointer to last occurance of a character
9 char *strrchr (const char *s, int c)
12 Returns a pointer to the last occurance of character C in
13 string S, or a NULL pointer if no occurance is found.
16 Behavior when character is the null character is implementation
24 register const char *s
;