home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / dev / vbcc / machines / amiga68k / libsrc / string / strcmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  219 b   |  12 lines

  1. #include <string.h>
  2.  
  3. int strcmp(const char *s1,const char *s2)
  4. /*  gehoert das so? */
  5. {
  6.     while(*s1==*s2){
  7.         if(!*s1) return(0);
  8.         s1++;s2++;
  9.     }
  10.     return(*(unsigned char *)s1-*(unsigned char *)s2);
  11. }
  12.