home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
simtel
/
sigm
/
vols000
/
vol078
/
instr.c
< prev
next >
Wrap
C/C++ Source or Header
|
1984-04-29
|
293b
|
16 lines
/* instr - find first occurence in string of member of set */
instr (p, s)
/**********/
char *p, *s;
{
char *c;
for ( ; *s; s++)
for (c = p; *c; c++)
if (*c == *s)
goto out;
out:
return c - p;
} /* instr */