home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 221_01 / strcmp.c < prev    next >
Encoding:
Text File  |  1979-12-31  |  256 b   |  10 lines

  1. /*
  2. **  compare string s against t
  3. **  returns <0 if s<t, 0 if s==t, >0 if s>t
  4. */
  5. strcmp(s, t) char *s, *t; {
  6.   for(; *s==*t; ++s, ++t)
  7.     if(*s == '\0') return 0;
  8.   return(*s - *t);
  9. }
  10.