2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or (at
5 * your option) any later version.
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 * Copyright © 2006 Pierre Habouzit
20 * Copyright notice from original mutt:
21 * Copyright (C) 2001 Thomas Roessler <roessler@does-not-exist.org>
25 * Versions of the string comparison functions which are locale-insensitive.
32 int ascii_strcasecmp(const char *a, const char *b)
43 for (; *a || *b; a++, b++) {
44 if ((i = ascii_tolower(*a) - ascii_tolower(*b)))
51 int ascii_strncasecmp (const char *a, const char *b, int n)
62 for (j = 0; (*a || *b) && j < n; a++, b++, j++) {
63 if ((i = ascii_tolower(*a) - ascii_tolower(*b)))