1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/mem.h

12 lines
196 B
C
Raw Normal View History

2018-01-25 17:24:33 +01:00
#ifndef LLARP_MEM_H_
#define LLARP_MEM_H_
2018-05-20 18:15:16 +02:00
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
2018-05-16 20:13:18 +02:00
2018-05-20 15:43:42 +02:00
/** constant time memcmp */
bool
llarp_eq(const void *a, const void *b, size_t sz);
2017-10-03 21:14:46 +02:00
#endif