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

模拟服务器

开发平台:

C/C++

  1. //---------------------------------------------------------------------------
  2. // Sword3 Engine (c) 1999-2000 by Kingsoft
  3. //
  4. // File: KStrList.cpp
  5. // Date: 2000.08.08
  6. // Code: WangWei(Daphnis)
  7. // Desc: Simple double linked node class
  8. //---------------------------------------------------------------------------
  9. #include "KWin32.h"
  10. #include "KDebug.h"
  11. #include "KStrBase.h"
  12. #include "KStrList.h"
  13. //---------------------------------------------------------------------------
  14. // 函数: Find
  15. // 功能: 查找
  16. // 参数: void
  17. // 返回: void
  18. //---------------------------------------------------------------------------
  19. KStrNode* KStrList::Find(char* str)
  20. {
  21. KStrNode* pNode = (KStrNode*) GetHead();
  22. while (pNode)
  23. {
  24. if (g_StrCmp(str, pNode->GetName()))
  25. return pNode;
  26. pNode = (KStrNode*) pNode->GetNext();
  27. }
  28. return NULL;
  29. }
  30. //--------------------------------------------------------------------------------