lokinet/llarp/util/mem.h

12 lines
174 B
C
Raw Normal View History

2018-01-25 16:24:33 +00:00
#ifndef LLARP_MEM_H_
#define LLARP_MEM_H_
2019-07-30 23:42:13 +00:00
#include <cstdint>
#include <cstdlib>
2018-05-16 18:13:18 +00:00
2018-05-20 13:43:42 +00:00
/** constant time memcmp */
bool
llarp_eq(const void *a, const void *b, size_t sz);
2017-10-03 19:14:46 +00:00
#endif