Blame lib/memcasecmp.c

Packit Service a2489d
/* Case-insensitive buffer comparator.
Packit Service a2489d
   Copyright (C) 1996-1997, 2000, 2003, 2006, 2009-2018 Free Software
Packit Service a2489d
   Foundation, Inc.
Packit Service a2489d
Packit Service a2489d
   This program is free software: you can redistribute it and/or modify
Packit Service a2489d
   it under the terms of the GNU General Public License as published by
Packit Service a2489d
   the Free Software Foundation; either version 3 of the License, or
Packit Service a2489d
   (at your option) any later version.
Packit Service a2489d
Packit Service a2489d
   This program is distributed in the hope that it will be useful,
Packit Service a2489d
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2489d
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2489d
   GNU General Public License for more details.
Packit Service a2489d
Packit Service a2489d
   You should have received a copy of the GNU General Public License
Packit Service a2489d
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit Service a2489d
Packit Service a2489d
/* Written by Jim Meyering.  */
Packit Service a2489d
Packit Service a2489d
#include <config.h>
Packit Service a2489d
Packit Service a2489d
#include "memcasecmp.h"
Packit Service a2489d
Packit Service a2489d
#include <ctype.h>
Packit Service a2489d
#include <limits.h>
Packit Service a2489d
Packit Service a2489d
/* Like memcmp, but ignore differences in case.
Packit Service a2489d
   Convert to upper case (not lower) before comparing so that
Packit Service a2489d
   join -i works with sort -f.  */
Packit Service a2489d
Packit Service a2489d
int
Packit Service a2489d
memcasecmp (const void *vs1, const void *vs2, size_t n)
Packit Service a2489d
{
Packit Service a2489d
  size_t i;
Packit Service a2489d
  char const *s1 = vs1;
Packit Service a2489d
  char const *s2 = vs2;
Packit Service a2489d
  for (i = 0; i < n; i++)
Packit Service a2489d
    {
Packit Service a2489d
      unsigned char u1 = s1[i];
Packit Service a2489d
      unsigned char u2 = s2[i];
Packit Service a2489d
      int U1 = toupper (u1);
Packit Service a2489d
      int U2 = toupper (u2);
Packit Service a2489d
      int diff = (UCHAR_MAX <= INT_MAX ? U1 - U2
Packit Service a2489d
                  : U1 < U2 ? -1 : U2 < U1);
Packit Service a2489d
      if (diff)
Packit Service a2489d
        return diff;
Packit Service a2489d
    }
Packit Service a2489d
  return 0;
Packit Service a2489d
}