home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 5.ddi / CTYPE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  1.3 KB  |  43 lines

  1. /*    ctype.h
  2.  
  3.     Defines the ctype macros.
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl    cdecl
  12. #endif
  13.  
  14. #define _IS_SP    1            /* is space */
  15. #define _IS_DIG    2            /* is digit indicator */
  16. #define _IS_UPP    4            /* is upper case */
  17. #define _IS_LOW    8            /* is lower case */
  18. #define _IS_HEX    16            /* [A-F or [a-f] */
  19. #define _IS_CTL    32            /* Control */
  20. #define _IS_PUN    64            /* punctuation */
  21.  
  22. extern    char _Cdecl _ctype[];     /* Character type array */
  23.  
  24. #define isalnum(c)    (_ctype[(c) + 1] & (_IS_DIG | _IS_UPP | _IS_LOW))
  25. #define isalpha(c)    (_ctype[(c) + 1] & (_IS_UPP | _IS_LOW))
  26. #define isascii(c)    ((unsigned)(c) < 128)
  27. #define iscntrl(c)    (_ctype[(c) + 1] & _IS_CTL)
  28. #define isdigit(c)    (_ctype[(c) + 1] & _IS_DIG)
  29. #define isgraph(c)    ((c) >= 0x21 && (c) <= 0x7e)
  30. #define islower(c)    (_ctype[(c) + 1] & _IS_LOW)
  31. #define isprint(c)    ((c) >= 0x20 && (c) <= 0x7e)
  32. #define ispunct(c)    (_ctype[(c) + 1] & _IS_PUN)
  33. #define isspace(c)    (_ctype[(c) + 1] & _IS_SP)
  34. #define isupper(c)    (_ctype[(c) + 1] & _IS_UPP)
  35. #define isxdigit(c)    (_ctype[(c) + 1] & (_IS_DIG | _IS_HEX))
  36.  
  37. #define _toupper(c)    ((c) + 'A' - 'a')
  38. #define _tolower(c)    ((c) + 'a' - 'A')
  39. #define toascii(c)    ((c) & 0x7f)
  40.  
  41. int    _Cdecl tolower(int ch);
  42. int    _Cdecl toupper(int ch);
  43.