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