2018-01-26 14:17:51 +00:00
|
|
|
#ifndef LLARP_MEM_HPP
|
|
|
|
#define LLARP_MEM_HPP
|
2018-05-25 17:52:10 +00:00
|
|
|
#include <llarp/buffer.h>
|
2018-01-29 14:27:24 +00:00
|
|
|
#include <llarp/mem.h>
|
2018-05-23 20:37:43 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
void
|
|
|
|
Zero(void *ptr, size_t sz);
|
2018-01-26 14:17:51 +00:00
|
|
|
|
2018-05-23 20:37:43 +00:00
|
|
|
template < typename T >
|
|
|
|
void
|
|
|
|
dumphex(const uint8_t *t)
|
|
|
|
{
|
|
|
|
size_t idx = 0;
|
|
|
|
while(idx < sizeof(T))
|
|
|
|
{
|
|
|
|
printf("%.2x ", t[idx++]);
|
|
|
|
if(idx % 8 == 0)
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-25 17:52:10 +00:00
|
|
|
template < typename T >
|
|
|
|
void
|
|
|
|
dumphex_buffer(T buff)
|
|
|
|
{
|
|
|
|
size_t idx = 0;
|
|
|
|
printf("buffer of size %ld\n", buff.sz);
|
|
|
|
while(idx < buff.sz)
|
|
|
|
{
|
|
|
|
printf("%.2x ", buff.base[idx++]);
|
|
|
|
if(idx % 8 == 0)
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
} // namespace llarp
|
2018-05-18 12:39:17 +00:00
|
|
|
|
2018-01-26 14:17:51 +00:00
|
|
|
#endif
|