瀏覽代碼

base: fix PS3 build and use C library functions in string.h when possible.

legacy
Sam Hocevar sam 11 年之前
父節點
當前提交
fa31f691f9
共有 1 個檔案被更改,包括 13 行新增27 行删除
  1. +13
    -27
      src/lol/base/string.h

+ 13
- 27
src/lol/base/string.h 查看文件

@@ -119,46 +119,32 @@ public:

int IndexOf(const char token) const
{
for (int i = 0; i < Count(); ++i)
{
if ((*this)[i] == token)
return i;
}
return -1;
using namespace std;

char *tmp = strchr(C(), token);
return tmp ? (int)(intptr_t)(tmp - C()) : -1;
}

int IndexOf(const char* token) const
{
int token_len = strlen(token);
if (Count() < token_len)
return -1;
using namespace std;

for (int i = 0; i < Count() - token_len + 1; ++i)
{
int j = 0;
for (; j < token_len; ++j)
{
if ((*this)[i + j] != token[j])
break;
}
if (j == token_len)
return i;
}
return -1;
char *tmp = strstr(C(), token);
return tmp ? (int)(intptr_t)(tmp - C()) : -1;
}

int LastIndexOf(const char token) const
{
for (int i = Count() - 1; i >= 0; --i)
{
if ((*this)[i] == token)
return i;
}
return -1;
using namespace std;

char *tmp = strrchr(C(), token);
return tmp ? (int)(intptr_t)(tmp - C()) : -1;
}

int LastIndexOf(const char* token) const
{
using namespace std;

int token_len = strlen(token);
if (Count() < token_len)
return -1;


Loading…
取消
儲存