home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
emacs-19.28-src.tgz
/
tar.out
/
fsf
/
emacs
/
unixlib
/
src
/
bcmp.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
149b
|
10 lines
#include "amiga.h"
#include <string.h>
#undef bcmp
int bcmp(char *b1, char *b2, int length)
{
return length == 0 ? 0 : memcmp(b2, b1, length);
}