]> diplodocus.org Git - nmh/blobdiff - sbr/m_atoi.c
Hacked m_Eom() to fix test-eom-align.
[nmh] / sbr / m_atoi.c
index 174c40771f4bf3d6c6e5434345a1fa69980b79f2..87a782833d9e68d9ca51996dcf6ac3e8a655e651 100644 (file)
@@ -1,6 +1,4 @@
-
-/*
- * m_atoi.c -- Parse a string representation of a message number, and
+/* m_atoi.c -- Parse a string representation of a message number, and
  *          -- return the numeric value of the message.  If the string
  *          -- contains any non-digit characters, then return 0.
  *
@@ -16,14 +14,10 @@ int
 m_atoi (char *str)
 {
     int i;
-    unsigned char *cp;
+    char *cp;
 
     for (i = 0, cp = str; *cp; cp++) {
-#ifdef LOCALE
-       if (!isdigit(*cp))
-#else
-       if (*cp < '0' || *cp > '9')
-#endif
+       if (!isdigit((unsigned char) *cp))
            return 0;
 
        i *= 10;