ctype.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_CTYPE_H
  2. #define _LINUX_CTYPE_H
  3. /*
  4.  * NOTE! This ctype does not handle EOF like the standard C
  5.  * library is required to.
  6.  */
  7. #define _U 0x01 /* upper */
  8. #define _L 0x02 /* lower */
  9. #define _D 0x04 /* digit */
  10. #define _C 0x08 /* cntrl */
  11. #define _P 0x10 /* punct */
  12. #define _S 0x20 /* white space (space/lf/tab) */
  13. #define _X 0x40 /* hex digit */
  14. #define _SP 0x80 /* hard space (0x20) */
  15. extern unsigned char _ctype[];
  16. #define __ismask(x) (_ctype[(int)(unsigned char)(x)])
  17. #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0)
  18. #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0)
  19. #define iscntrl(c) ((__ismask(c)&(_C)) != 0)
  20. #define isdigit(c) ((__ismask(c)&(_D)) != 0)
  21. #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0)
  22. #define islower(c) ((__ismask(c)&(_L)) != 0)
  23. #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0)
  24. #define ispunct(c) ((__ismask(c)&(_P)) != 0)
  25. #define isspace(c) ((__ismask(c)&(_S)) != 0)
  26. #define isupper(c) ((__ismask(c)&(_U)) != 0)
  27. #define isxdigit(c) ((__ismask(c)&(_D|_X)) != 0)
  28. #define isascii(c) (((unsigned char)(c))<=0x7f)
  29. #define toascii(c) (((unsigned char)(c))&0x7f)
  30. static inline unsigned char __tolower(unsigned char c)
  31. {
  32. if (isupper(c))
  33. c -= 'A'-'a';
  34. return c;
  35. }
  36. static inline unsigned char __toupper(unsigned char c)
  37. {
  38. if (islower(c))
  39. c -= 'a'-'A';
  40. return c;
  41. }
  42. #define tolower(c) __tolower(c)
  43. #define toupper(c) __toupper(c)
  44. #endif