blob: 2c9d1eae742f3876c37739913293e032a4bad9b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include "config.h"
/*
** Copyright 1998 - 1999 Double Precision, Inc. See COPYING for
** distribution information.
*/
/*
*/
#include <ctype.h>
#include <string.h>
int strncasecmp(const char *a, const char *b, size_t n)
{
while (n && (*a || *b))
{
int ca=toupper(*a);
int cb=toupper(*b);
if (ca < cb) return (-1);
if (ca > cb) return (1);
++a;
++b;
--n;
}
return (0);
}
|