ctype_private.h 488 B

123456789101112131415161718192021
  1. /* $OpenBSD: ctype_private.h,v 1.1 2005/08/08 05:53:00 espie Exp $ */
  2. /* Written by Marc Espie, public domain */
  3. #define _U 0x01
  4. #define _L 0x02
  5. #define _N 0x04
  6. #define _S 0x08
  7. #define _P 0x10
  8. #define _C 0x20
  9. #define _X 0x40
  10. #define _B 0x80
  11. #define CTYPE_NUM_CHARS 256
  12. extern const char _C_ctype_[];
  13. extern const short _C_toupper_[];
  14. extern const short _C_tolower_[];
  15. extern const char *_ctype_;
  16. extern const short *_tolower_tab_;
  17. extern const short *_toupper_tab_;