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 >
C/C++ Source or Header  |  1988-02-26  |  119b  |  9 lines

  1. #include <ctype.h>
  2. test_numeric(char *str)
  3. {
  4.     while(*str) {
  5.         if(!isdigit(*str++)) return(1);
  6.     }
  7.     return(0);
  8. }
  9.