KasmVNC/common/network/webudp/WuString.cpp
Lauri Kasanen 3b40a92548 Udp
2022-07-26 10:38:14 +00:00

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;
}