X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fcmpt.c;h=2436cf60dfee4d6f18e8dc5efb927638f4cacc94;hp=35b72ff5626a602f963e42e9d8ba21b90ab10e96;hb=462e643a7e31676eceda23e634241f7b4d2cd7bb;hpb=3073a77ed89e7d9527d110a028d134bfd1f9cb40 diff --git a/src/cmpt.c b/src/cmpt.c index 35b72ff5..2436cf60 100644 --- a/src/cmpt.c +++ b/src/cmpt.c @@ -28,7 +28,7 @@ Corresponding Source for a non-source form of such a combination shall include the source code for the parts of OpenSSL used as well as that of the covered work. */ -#include +#include "wget.h" #include #include @@ -41,8 +41,6 @@ as that of the covered work. */ #include -#include "wget.h" - /* Some systems lack certain functions normally taken for granted. For example, Windows doesn't have strptime, and some systems don't have a usable fnmatch. This file should contain fallback @@ -74,8 +72,8 @@ strcasecmp (const char *s1, const char *s2) do { - c1 = TOLOWER (*p1++); - c2 = TOLOWER (*p2++); + c1 = c_tolower (*p1++); + c2 = c_tolower (*p2++); if (c1 == '\0') break; } @@ -103,8 +101,8 @@ strncasecmp (const char *s1, const char *s2, size_t n) do { - c1 = TOLOWER (*p1++); - c2 = TOLOWER (*p2++); + c1 = c_tolower (*p1++); + c2 = c_tolower (*p2++); if (c1 == '\0' || c1 != c2) return c1 - c2; } while (--n > 0); @@ -433,9 +431,9 @@ strptime_internal (rp, fmt, tm, decided) { /* A white space in the format string matches 0 more or white space in the input string. */ - if (ISSPACE (*fmt)) + if (c_isspace (*fmt)) { - while (ISSPACE (*rp)) + while (c_isspace (*rp)) ++rp; ++fmt; continue; @@ -655,7 +653,7 @@ strptime_internal (rp, fmt, tm, decided) case 'n': case 't': /* Match any white space. */ - while (ISSPACE (*rp)) + while (c_isspace (*rp)) ++rp; break; case 'p': @@ -1368,7 +1366,7 @@ strtoll (const char *nptr, char **endptr, int base) nptr += 2; /* "0x" must be followed by at least one hex char. If not, return 0 and place ENDPTR on 'x'. */ - if (!ISXDIGIT (*nptr)) + if (!c_isxdigit (*nptr)) { --nptr; goto out;