lokinet/llarp/util/mem.h

12 lines
196 B
C
Raw Normal View History

2018-01-25 16:24:33 +00:00
#ifndef LLARP_MEM_H_
#define LLARP_MEM_H_
2018-05-20 16:15:16 +00:00
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
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