1 /* File name comparison routine.
3 Copyright (C) 2007 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
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.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
27 #include "filenames.h"
28 #include "safe-ctype.h"
32 @deftypefn Extension int filename_cmp (const char *@var{s1}, const char *@var{s2})
34 Return zero if the two file names @var{s1} and @var{s2} are equivalent.
35 If not equivalent, the returned value is similar to what @code{strcmp}
36 would return. In other words, it returns a negative value if @var{s1}
37 is less than @var{s2}, or a positive value if @var{s2} is greater than
40 This function does not normalize file names. As a result, this function
41 will treat filenames that are spelled differently as different even in
42 the case when the two filenames point to the same underlying file.
43 However, it does handle the fact that on DOS-like file systems, forward
44 and backward slashes are equal.
51 filename_cmp (const char *s1
, const char *s2
)
53 #ifndef HAVE_DOS_BASED_FILE_SYSTEM
54 return strcmp(s1
, s2
);
58 int c1
= TOLOWER (*s1
);
59 int c2
= TOLOWER (*s2
);
61 /* On DOS-based file systems, the '/' and the '\' are equivalent. */
81 @deftypefn Extension int filename_ncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{n})
83 Return zero if the two file names @var{s1} and @var{s2} are equivalent
85 If not equivalent, the returned value is similar to what @code{strncmp}
86 would return. In other words, it returns a negative value if @var{s1}
87 is less than @var{s2}, or a positive value if @var{s2} is greater than
90 This function does not normalize file names. As a result, this function
91 will treat filenames that are spelled differently as different even in
92 the case when the two filenames point to the same underlying file.
93 However, it does handle the fact that on DOS-like file systems, forward
94 and backward slashes are equal.
101 filename_ncmp (const char *s1
, const char *s2
, size_t n
)
103 #ifndef HAVE_DOS_BASED_FILE_SYSTEM
104 return strncmp(s1
, s2
, n
);
110 int c1
= TOLOWER (*s1
);
111 int c2
= TOLOWER (*s2
);
113 /* On DOS-based file systems, the '/' and the '\' are equivalent. */
119 if (c1
== '\0' || c1
!= c2
)