home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / demos / stormc-demo / include / ctype.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  539b  |  36 lines

  1. #ifndef _INCLUDE_CTYPE_H
  2. #define _INCLUDE_CTYPE_H
  3.  
  4. /*
  5. **  $VER: ctype.h 10.1 (19.7.95)
  6. **  Includes Release 40.15
  7. **
  8. **  '(C) Copyright 1995/96 Haage & Partner Computer GmbH'
  9. **     All Rights Reserved
  10. */
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. int isalnum(int);
  17. int isalpha(int);
  18. int iscntrl(int);
  19. int isdigit(int);
  20. int isgraph(int);
  21. int islower(int);
  22. int isprint(int);
  23. int ispunct(int);
  24. int isspace(int);
  25. int isupper(int);
  26. int isxdigit(int);
  27. int tolower(int);
  28. int toupper(int);
  29. int which_xdigit(char);
  30.  
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34.  
  35.  
  36. #endif