KSChar.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  FileName    :   KSChar.h
  4. //  Creater     :   Li Yu Xiong
  5. //  Date        :   2002-12-21 20:30:35
  6. //  Comment     :   
  7. //
  8. //////////////////////////////////////////////////////////////////////////////////////
  9. #ifndef _KSCHAR_H
  10. #define _KSCHAR_H
  11. extern unsigned char LowerToUpperTable[256 + 4];
  12. extern unsigned char UpperToLowerTable[256 + 4];
  13. inline int ToUpper(char ch)
  14. {
  15.     return (unsigned char)LowerToUpperTable[(unsigned char)ch];
  16. }
  17. inline int ToLower(char ch)
  18. {
  19.     return (unsigned char)UpperToLowerTable[(unsigned char)ch];
  20. }
  21. #endif // _KSCHAR_H