blob: 089df2834481b0cab890e99baa0a969c9f914c26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#define import_libc
#include <iraf.h>
/* STRNCMP -- Compare up to the first N characters of two strings. -N is
** returned if S1 < S2, 0 if S1 == S2, and +N if S1 > S2.
*/
int
strncmp (
char *s1,
char *s2,
int n
)
{
while (--n >= 0 && *s1 == *s2++)
if (*s1++ == '\0')
return (0);
return (n < 0 ? 0 : *s1 - *--s2);
}
|