rationnalize includes a lot:
[apps/madmutt.git] / lib-lib / ascii.c
1 /*
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.
6  *
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.
11  *
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,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19 /*
20  * Copyright notice from original mutt:
21  * Copyright (C) 2001 Thomas Roessler <roessler@does-not-exist.org>
22  */
23
24 /*
25  * Versions of the string comparison functions which are locale-insensitive.
26  */
27
28 #include "lib-lib.h"
29
30 int ascii_strcasecmp(const char *a, const char *b)
31 {
32     int i;
33
34     if (a == b)
35         return 0;
36     if (a == NULL && b)
37         return -1;
38     if (b == NULL && a)
39         return 1;
40
41     for (; *a || *b; a++, b++) {
42         if ((i = ascii_tolower(*a) - ascii_tolower(*b)))
43             return i;
44     }
45
46     return 0;
47 }
48
49 int ascii_strncasecmp (const char *a, const char *b, int n)
50 {
51     int i, j;
52
53     if (a == b)
54         return 0;
55     if (a == NULL && b)
56         return -1;
57     if (b == NULL && a)
58         return 1;
59
60     for (j = 0; (*a || *b) && j < n; a++, b++, j++) {
61         if ((i = ascii_tolower(*a) - ascii_tolower(*b)))
62             return i;
63     }
64
65     return 0;
66 }