~ubuntu-branches/ubuntu/precise/wget/precise-proposed

« back to all changes in this revision

Viewing changes to lib/strncasecmp.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2011-10-19 00:00:09 UTC
  • mfrom: (2.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20111019000009-8p33w3wz4b1rdri0
Tags: 1.13-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add wget-udeb to ship wget.gnu as alternative to busybox wget
    implementation.
  - Depend on libssl-dev 0.9.8k-7ubuntu4 (LP: #503339)
* Dropped changes, superseded in Debian:
  - Keep build dependencies in main:
    + debian/control: remove info2man build-dep
    + debian/patches/series: disable wget-infopod_generated_manpage
  - Mark wget Multi-Arch: foreign, so packages that aren't of the same arch
    can depend on it.
* Pass --with-ssl=openssl; we don't want to use gnutls, there's no udeb for
  it.
* Add a second build pass for the udeb, so we can build without libidn.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* strncasecmp.c -- case insensitive string comparator
2
 
   Copyright (C) 1998, 1999, 2005, 2006, 2007, 2009 Free Software
3
 
   Foundation, Inc.
4
 
 
5
 
   This program is free software; you can redistribute it and/or modify
6
 
   it under the terms of the GNU General Public License as published by
7
 
   the Free Software Foundation; either version 3, or (at your option)
8
 
   any later version.
9
 
 
10
 
   This program is distributed in the hope that it will be useful,
11
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
   GNU General Public License for more details.
14
 
 
15
 
   You should have received a copy of the GNU General Public License
16
 
   along with this program; if not, write to the Free Software Foundation,
17
 
   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
 
 
19
 
#include <config.h>
20
 
 
21
 
/* Specification.  */
22
 
#include <string.h>
23
 
 
24
 
#include <ctype.h>
25
 
#include <limits.h>
26
 
 
27
 
#define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
28
 
 
29
 
/* Compare no more than N bytes of strings S1 and S2, ignoring case,
30
 
   returning less than, equal to or greater than zero if S1 is
31
 
   lexicographically less than, equal to or greater than S2.
32
 
   Note: This function cannot work correctly in multibyte locales.  */
33
 
 
34
 
int
35
 
strncasecmp (const char *s1, const char *s2, size_t n)
36
 
{
37
 
  register const unsigned char *p1 = (const unsigned char *) s1;
38
 
  register const unsigned char *p2 = (const unsigned char *) s2;
39
 
  unsigned char c1, c2;
40
 
 
41
 
  if (p1 == p2 || n == 0)
42
 
    return 0;
43
 
 
44
 
  do
45
 
    {
46
 
      c1 = TOLOWER (*p1);
47
 
      c2 = TOLOWER (*p2);
48
 
 
49
 
      if (--n == 0 || c1 == '\0')
50
 
        break;
51
 
 
52
 
      ++p1;
53
 
      ++p2;
54
 
    }
55
 
  while (c1 == c2);
56
 
 
57
 
  if (UCHAR_MAX <= INT_MAX)
58
 
    return c1 - c2;
59
 
  else
60
 
    /* On machines where 'char' and 'int' are types of the same size, the
61
 
       difference of two 'unsigned char' values - including the sign bit -
62
 
       doesn't fit in an 'int'.  */
63
 
    return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
64
 
}