home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / pdksh-4.9-src.tgz / tar.out / contrib / pdksh / std / stdc / strchr.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  477b  |  23 lines

  1. #include <string.h>
  2. /* $Id: strchr.c,v 1.3 93/05/05 21:18:33 sjg Exp $ */
  3.  
  4. /*
  5.  * strchr - find first occurrence of a character in a string
  6.  */
  7.  
  8. char *                /* found char, or NULL if none */
  9. strchr(s, charwanted)
  10. const char *s;
  11. register char charwanted;
  12. {
  13.     register const char *scan;
  14.  
  15.     /*
  16.      * The odd placement of the two tests is so NUL is findable.
  17.      */
  18.     for (scan = s; *scan != charwanted;)    /* ++ moved down for opt. */
  19.         if (*scan++ == '\0')
  20.             return(NULL);
  21.     return(scan);
  22. }
  23.