ftp.nice.ch/pub/next/developer/languages/lisp/gcl.2.2-LISP.I.bs.tar.gz#/gcl-2.2/o/bcmp.c

This is bcmp.c in view mode; [Download] [Up]

int bcmp(s1,s2,n)
char *s1,*s2;
int n;
{     while (n-- > 0)
	{if (*s1++ != *s2++)
	 return 1;}
      return 0;
    }


  

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.