home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 221_01 / isdigit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-01  |  256 b   |  9 lines

  1. #include stdio.h
  2. /*
  3. **  check if digit
  4. **  return 1 if true else 0
  5. */
  6. isdigit(c) char c; {
  7.   return((c>='0') & (c<='9'));
  8.   }
  9.