C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
strrchr, _fstrrchr
 Description Example                     Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
  Include:   <string.h>
 
  Syntax:    char *strrchr( char *string, int c );
             char __far *_fstrrchr( char __far *string, int c );
 
  Returns:   a pointer to the last occurrence of <c> in <string1>, or
             NULL if <c> is not found.
 
  See also:  strchr, strspn, strcspn, strpbrk
                                    -♦-