mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-25 09:33:50 +01:00
7 lines
207 B
C
7 lines
207 B
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
int32_t FindTokenIndex(const char* s, size_t len, char token);
|
|
bool MemEqual(const void* first, size_t firstLen, const void* second,
|
|
size_t secondLen);
|