mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-12-11 09:20:46 +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);
|