home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d183
/
mklib
/
edlib
/
dectoint.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-02-25
|
371b
|
19 lines
/* edlib version 1.0 of 04/08/88 */
/* this function takes a string of decimal digits and returns its value */
#include <ctype.h>
int dectoint(number)
char *number;
{
int value = 0;
while ( *number )
if ( isdigit(*number) ) {
value = value*10 + toint(*number++);
} else {
return(value);
}
return(value);
}