home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / LATTIC_3.ZIP / HEADERS / FCTYPE.H < prev    next >
C/C++ Source or Header  |  1990-02-21  |  812b  |  54 lines

  1. /*
  2.  * fctype.h - define function forms of "is" and "to" operations.
  3.  *
  4.  * Copyright (c) 1990 HiSoft
  5.  */
  6.  
  7. #ifndef _FCTYPE_H
  8. #define _FCTYPE_H
  9.  
  10. #undef isalnum
  11. #undef isalpha
  12. #undef iscntrl
  13. #undef isdigit
  14. #undef isgraph
  15. #undef islower
  16. #undef isprint
  17. #undef ispunct
  18. #undef isspace
  19. #undef isupper
  20. #undef isxdigit
  21. #undef tolower
  22. #undef toupper
  23.  
  24. int isalnum(int);
  25. int isalpha(int);
  26. int iscntrl(int);
  27. int isdigit(int);
  28. int isgraph(int);
  29. int islower(int);
  30. int isprint(int);
  31. int ispunct(int);
  32. int isspace(int);
  33. int isupper(int);
  34. int isxdigit(int);
  35.  
  36. int tolower(int);
  37. int toupper(int);
  38.  
  39.  
  40. /*
  41.  * Extensions to the ANSI standard.
  42.  */
  43.  
  44. #undef isascii
  45. #undef iscsym
  46. #undef iscsymf
  47. #undef toascii
  48.  
  49. int isascii(int);
  50. int iscsym(int);
  51. int iscsymf(int);
  52. int toascii(int);
  53. #endif
  54.