2 strnatcmp.c -- Perform 'natural order' comparisons of strings in C.
3 Copyright (C) 2000, 2004 by Martin Pool <mbp sourcefrog net>
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
23 /* partial change history:
25 * 2004-10-10 mbp: Lift out character type dependencies into macros.
27 * Eric Sosman pointed out that ctype functions take a parameter whose
28 * value must be that of an unsigned int, even on platforms that have
29 * negative chars in their default char type.
32 * Changes for Rockbox:
33 * This version is changed slightly to deal better with the datatypes,
34 * it does not equal to the original software.
41 #include "strnatcmp.h"
43 #define assert(x) /* nothing */
45 /* Convert char to int regardless of whether char is signed or not */
49 return (int) ((unsigned char) c
);
52 /* These are defined as macros to make it easier to adapt this code to
53 * different characters types or comparison functions. */
64 /* We use 'tolower' and not 'toupper' so that '_' gets sorted
72 compare_right(char const *a
, char const *b
)
77 /* The longest run of digits wins. That aside, the greatest
78 value wins, but we can't know that it will until we've scanned
79 both numbers to know that they have the same magnitude, so we
80 remember it in BIAS. */
84 if (!nat_isdigit(ca
) && !nat_isdigit(cb
))
86 else if (!nat_isdigit(ca
))
88 else if (!nat_isdigit(cb
))
96 } else if (!ca
&& !cb
)
105 compare_left(char const *a
, char const *b
)
107 /* Compare two left-aligned numbers: the first to have a
108 different value wins. */
110 if (!nat_isdigit(*a
) && !nat_isdigit(*b
))
112 else if (!nat_isdigit(*a
))
114 else if (!nat_isdigit(*b
))
125 static int strnatcmp0(char const *a
, char const *b
, int fold_case
)
129 int fractional
, result
;
137 /* process run of digits */
138 if (nat_isdigit(ca
) && nat_isdigit(cb
)) {
139 fractional
= (ca
== '0' || cb
== '0');
142 if ((result
= compare_left(a
+ai
, b
+bi
)) != 0)
145 if ((result
= compare_right(a
+ai
, b
+bi
)) != 0)
151 /* The strings compare the same. Call str[case]cmp() to ensure
152 consistent results. */
154 return strcasecmp(a
,b
);
160 ca
= nat_unify_case(ca
);
161 cb
= nat_unify_case(cb
);
175 int strnatcmp(const char *a
, const char *b
) {
176 return strnatcmp0(a
, b
, 0);
180 /* Compare, recognizing numeric string and ignoring case. */
181 int strnatcasecmp(const char *a
, const char *b
) {
182 return strnatcmp0(a
, b
, 1);