]> sjero.net Git - wget/blobdiff - src/cmpt.c
Eschew config-post.h.
[wget] / src / cmpt.c
index f5f25674424a813b838e9a06daee6c8a1f8b398b..ff60842da01a100127cba238d017bc06168a0d1a 100644 (file)
@@ -1,5 +1,6 @@
 /* Replacements for routines missing on some systems.
-   Copyright (C) 1996-2006 Free Software Foundation, Inc.
+   Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
+   2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 
 This file is part of GNU Wget.
 
@@ -26,7 +27,7 @@ modify this file, you may extend this exception to your version of the
 file, but you are not obligated to do so.  If you do not wish to do
 so, delete this exception statement from your version.  */
 
-#include <config.h>
+#include "wget.h"
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -39,8 +40,6 @@ so, delete this exception statement from your version.  */
 
 #include <errno.h>
 
-#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
@@ -72,8 +71,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;
     }
@@ -101,8 +100,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);
@@ -431,9 +430,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;
@@ -653,7 +652,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':
@@ -1366,7 +1365,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;