home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
LIB
/
unix.zoo
/
bcmp.c
< prev
next >
Wrap
Text File
|
2009-11-06
|
263b
|
12 lines
/* bcmp - Berklix equivalent of memcmp */
/* == 0 or != 0 for equality and inequality */
int bcmp(s1, s2, length)
char *s1;
char *s2;
int length;
{
return (memcmp(s1, s2, length));
} /* end of bcmp */