You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
434 B
C++
20 lines
434 B
C++
#include "WuString.h"
|
|
#include <ctype.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
int32_t FindTokenIndex(const char* s, size_t len, char token) {
|
|
for (size_t i = 0; i < len; i++) {
|
|
if (s[i] == token) return i;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
bool MemEqual(const void* first, size_t firstLen, const void* second,
|
|
size_t secondLen) {
|
|
if (firstLen != secondLen) return false;
|
|
|
|
return memcmp(first, second, firstLen) == 0;
|
|
}
|