home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
273_01
/
testnum.cc
< prev
next >
Wrap
C/C++ Source or Header
|
1988-02-26
|
119b
|
9 lines
#include <ctype.h>
test_numeric(char *str)
{
while(*str) {
if(!isdigit(*str++)) return(1);
}
return(0);
}