Mercurial > hg > octave-jordi > gnulib-hg
annotate lib/mbspcasecmp.c @ 12421:e8d2c6fc33ad
Use spaces for indentation, not tabs.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Thu, 10 Dec 2009 20:28:30 +0100 |
parents | a0bbe1a6f787 |
children | b5e42ef33b49 |
rev | line source |
---|---|
8159 | 1 /* Case-insensitive string comparison function. |
10954
a0bbe1a6f787
Remove HAVE_MBRTOWC conditionals. Use mbrtowc unconditionally.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2 Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc. |
8159 | 3 Written by Bruno Haible <bruno@clisp.org>, 2007. |
4 | |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8159
diff
changeset
|
5 This program is free software: you can redistribute it and/or modify |
8159 | 6 it under the terms of the GNU General Public License as published by |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8159
diff
changeset
|
7 the Free Software Foundation; either version 3 of the License, or |
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8159
diff
changeset
|
8 (at your option) any later version. |
8159 | 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 | |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8159
diff
changeset
|
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
8159 | 17 |
18 #include <config.h> | |
19 | |
20 /* Specification. */ | |
21 #include <string.h> | |
22 | |
23 #include <ctype.h> | |
24 | |
10954
a0bbe1a6f787
Remove HAVE_MBRTOWC conditionals. Use mbrtowc unconditionally.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
25 #include "mbuiter.h" |
8159 | 26 |
27 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch)) | |
28 | |
29 /* Compare the initial segment of the character string STRING consisting of | |
30 at most mbslen (PREFIX) characters with the character string PREFIX, | |
31 ignoring case, returning less than, equal to or greater than zero if this | |
32 initial segment is lexicographically less than, equal to or greater than | |
33 PREFIX. | |
34 Note: This function may, in multibyte locales, return 0 if STRING is of | |
35 smaller length than PREFIX! */ | |
36 char * | |
37 mbspcasecmp (const char *string, const char *prefix) | |
38 { | |
39 /* This is essentially the same as | |
40 mbsncasecmp (string, prefix, mbslen (prefix)) | |
41 just with small optimizations. */ | |
42 if (string == prefix) | |
43 return (char *) (string + strlen (string)); | |
44 | |
45 /* Be careful not to look at the entire extent of STRING or PREFIX until | |
46 needed. This is useful because when two strings differ, the difference is | |
47 most often already in the very few first characters. */ | |
48 if (MB_CUR_MAX > 1) | |
49 { | |
50 mbui_iterator_t iter1; | |
51 mbui_iterator_t iter2; | |
52 | |
53 mbui_init (iter1, string); | |
54 mbui_init (iter2, prefix); | |
55 | |
56 while (mbui_avail (iter1) && mbui_avail (iter2)) | |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
57 { |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
58 int cmp = mb_casecmp (mbui_cur (iter1), mbui_cur (iter2)); |
8159 | 59 |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
60 if (cmp != 0) |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
61 return NULL; |
8159 | 62 |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
63 mbui_advance (iter1); |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
64 mbui_advance (iter2); |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
65 } |
8159 | 66 if (!mbui_avail (iter2)) |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
67 /* PREFIX equals STRING or is terminated before STRING. */ |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
68 return (char *) mbui_cur_ptr (iter1); |
8159 | 69 else |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
70 /* STRING terminated before PREFIX. */ |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
71 return NULL; |
8159 | 72 } |
73 else | |
74 { | |
75 const unsigned char *p1 = (const unsigned char *) string; | |
76 const unsigned char *p2 = (const unsigned char *) prefix; | |
77 unsigned char c1, c2; | |
78 | |
79 for (; ; p1++, p2++) | |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
80 { |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
81 c1 = TOLOWER (*p1); |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
82 c2 = TOLOWER (*p2); |
8159 | 83 |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
84 if (c2 == '\0' || c1 != c2) |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
85 break; |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
86 } |
8159 | 87 |
88 if (c2 == '\0') | |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
89 /* PREFIX equals STRING or is terminated before STRING. */ |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
90 return (char *) p1; |
8159 | 91 else |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
92 /* STRING terminated before PREFIX. */ |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10954
diff
changeset
|
93 return NULL; |
8159 | 94 } |
95 } |