]>
diplodocus.org Git - nmh/blob - sbr/m_atoi.c
1 /* m_atoi.c -- Parse a string representation of a message number, and
2 * -- return the numeric value of the message. If the string
3 * -- contains any non-digit characters, then return 0.
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
19 for (i
= 0, cp
= str
; *cp
; cp
++) {
20 if (!isdigit((unsigned char) *cp
))