home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 48
/
Amiga_Dream_48.iso
/
Atari
/
c
/
sozobon-v2
/
dlibsrc.lha
/
MEMCHR.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-10-05
|
172b
|
12 lines
#include <stddef.h>
char *memchr(buf, c, cnt)
register char *buf, c;
register int cnt;
{
while(cnt--)
if(*buf++ == c)
return(--buf);
return(NULL);
}