home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / emacs-19.28-src.lha / emacs-19.28 / unixlib / src / bcmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-03  |  149 b   |  10 lines

  1. #include "amiga.h"
  2. #include <string.h>
  3.  
  4. #undef bcmp
  5.  
  6. int bcmp(char *b1, char *b2, int length)
  7. {
  8.   return length == 0 ? 0 : memcmp(b2, b1, length);
  9. }
  10.