X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..2b63c01aa93210f7c6b812c135173812793c7176:/sbr/m_atoi.c diff --git a/sbr/m_atoi.c b/sbr/m_atoi.c index b1b5133d..174c4077 100644 --- a/sbr/m_atoi.c +++ b/sbr/m_atoi.c @@ -4,7 +4,9 @@ * -- return the numeric value of the message. If the string * -- contains any non-digit characters, then return 0. * - * $Id$ + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include @@ -14,7 +16,7 @@ int m_atoi (char *str) { int i; - char *cp; + unsigned char *cp; for (i = 0, cp = str; *cp; cp++) { #ifdef LOCALE