home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 221_01 / isdigit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-12-31  |  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.