Reformated comments and long lines
[mmh] / sbr / atooi.c
1 /*
2 ** atooi.c -- octal version of atoi()
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10
11
12 int
13 atooi(char *cp)
14 {
15         register int i, base;
16
17         i = 0;
18         base = 8;
19         while (*cp >= '0' && *cp <= '7') {
20                 i *= base;
21                 i += *cp++ - '0';
22         }
23
24         return i;
25 }