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

模拟服务器

开发平台:

C/C++

  1. //////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  FileName    :   KSG_StringProcess.h
  4. //  Version     :   1.0
  5. //  Creater     :   Freeeway Chen
  6. //  Date        :   2003-8-1 12:43:32
  7. //  Comment     :   Process String to Int, Skip Symbol
  8. //
  9. //////////////////////////////////////////////////////////////////////////////////////
  10. #ifndef _KSG_STRING_PROCESS_H   
  11. #define _KSG_STRING_PROCESS_H   1
  12. #include "KWin32.h"
  13. ENGINE_API int KSG_StringGetInt(const char **ppcszString, int nDefaultValue);
  14. ENGINE_API bool KSG_StringSkipSymbol(const char **ppcszString, int nSymbol);
  15. inline int KSG_StringGetInt(char **ppszString, int nDefaultValue)
  16. {
  17.     return KSG_StringGetInt((const char **)ppszString, nDefaultValue);    
  18. }
  19. inline bool KSG_StringSkipSymbol(char **ppszString, int nSymbol)
  20. {
  21.     return KSG_StringSkipSymbol((const char **)ppszString, nSymbol);
  22. }
  23. #endif