X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fatooi.c;h=cb557b7d644957ae48bfa1584d1c90b1d527a252;hp=ab58cb46cb7693d531310335d2628efb4c0822e7;hb=2968a0027b4c64664076f0d03a37f9744fe26782;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b diff --git a/sbr/atooi.c b/sbr/atooi.c index ab58cb4..cb557b7 100644 --- a/sbr/atooi.c +++ b/sbr/atooi.c @@ -1,9 +1,10 @@ - /* - * atooi.c -- octal version of atoi() - * - * $Id$ - */ +** atooi.c -- octal version of atoi() +** +** 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 @@ -11,14 +12,14 @@ int atooi(char *cp) { - register int i, base; + register int i, base; - i = 0; - base = 8; - while (*cp >= '0' && *cp <= '7') { - i *= base; - i += *cp++ - '0'; - } + i = 0; + base = 8; + while (*cp >= '0' && *cp <= '7') { + i *= base; + i += *cp++ - '0'; + } - return i; + return i; }