home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / c / adev1120.lha / include / fctype.h < prev    next >
C/C++ Source or Header  |  1993-05-15  |  672b  |  30 lines

  1. /*
  2.  *
  3.  * This header file defines the prototypes the various "is" and
  4.  * "to" operations.
  5.  *
  6.  */
  7.  
  8. extern unsigned char isalnum (char);
  9. extern unsigned char isalpha (char);
  10. extern unsigned char iscntrl (char);
  11. extern unsigned char isdigit (char);
  12. extern unsigned char isgraph (char);
  13. extern unsigned char islower (char);
  14. extern unsigned char isprint (char);
  15. extern unsigned char ispunct (char);
  16. extern unsigned char isspace (char);
  17. extern unsigned char isupper (char);
  18. extern unsigned char isxdigit (char);
  19.  
  20. extern unsigned char tolower (char);
  21. extern unsigned char toupper (char);
  22. /*
  23.  *
  24.  * Define NULL if it's not already defined
  25.  *
  26.  */
  27. #ifndef NULL
  28. #define NULL 0
  29. #endif
  30.