]> diplodocus.org Git - nmh/blob - sbr/atooi.c
Just reworded the bit about '%s' being safe not to quote (it's only safe not to
[nmh] / sbr / atooi.c
1
2 /*
3 * atooi.c -- octal version of atoi()
4 *
5 * $Id$
6 */
7
8 #include <h/mh.h>
9
10
11 int
12 atooi(char *cp)
13 {
14 register int i, base;
15
16 i = 0;
17 base = 8;
18 while (*cp >= '0' && *cp <= '7') {
19 i *= base;
20 i += *cp++ - '0';
21 }
22
23 return i;
24 }