#ifndef lint static char sccsid[] = "@(#)strncmp.c 5.1 (Berkeley) 06/05/85"; #endif not lint /* * Compare strings (at most n bytes): s1>s2: >0 s1==s2: 0 s1= 0 && *s1 == *s2++) if (*s1++ == '\0') return(0); return(n<0 ? 0 : *s1 - *--s2); }