home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libnix-0.8-src.lha / libnix-0.8 / sources / nix / string / strcmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  133 b   |  12 lines

  1. #include <string.h>
  2.  
  3. int strcmp(const char *s1,const char *s2)
  4.   int r;
  5.   
  6.   while (!(r=*s1++-*s2) && *s2++)
  7.     ;
  8.  
  9.   return r;
  10. }
  11.