qc.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
strrchr, _fstrrchr
 Description Example                     Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  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, strcspn, strncat, strncmp, strncpy, strnicmp,
             strpbrk, strspn
                                    -♦-