1: #if defined(LIBC_SCCS) && !defined(lint)
   2: static char sccsid[] = "@(#)strcmp.c	5.2 (Berkeley) 3/9/86";
   3: #endif LIBC_SCCS and not lint
   4: 
   5: /*
   6:  * Compare strings:  s1>s2: >0  s1==s2: 0  s1<s2: <0
   7:  */
   8: 
   9: strcmp(s1, s2)
  10: register char *s1, *s2;
  11: {
  12: 
  13:     while (*s1 == *s2++)
  14:         if (*s1++=='\0')
  15:             return(0);
  16:     return(*s1 - *--s2);
  17: }

Defined functions

strcmp defined in line 9; used 2012 times

Defined variables

sccsid defined in line 2; never used
Last modified: 1986-03-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1202
Valid CSS Valid XHTML 1.0 Strict