home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / gen / index.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  219 b   |  18 lines

  1. /*
  2.  * Return the ptr in sp at which the character c appears;
  3.  * NULL if not found
  4.  */
  5.  
  6. #define    NULL    0
  7.  
  8. char *
  9. index(sp, c)
  10. register char *sp, c;
  11. {
  12.     do {
  13.         if (*sp == c)
  14.             return(sp);
  15.     } while (*sp++);
  16.     return(NULL);
  17. }
  18.