home *** CD-ROM | disk | FTP | other *** search
/ Dream 48 / Amiga_Dream_48.iso / Atari / c / sozobon-v2 / dlibsrc.lha / MEMCHR.C < prev    next >
C/C++ Source or Header  |  1988-10-05  |  172b  |  12 lines

  1. #include <stddef.h>
  2.  
  3. char *memchr(buf, c, cnt)
  4.     register char *buf, c;
  5.     register int cnt;
  6.     {
  7.     while(cnt--)
  8.         if(*buf++ == c)
  9.             return(--buf);
  10.     return(NULL);
  11.     }
  12.