Files
app-ethereum/src_features/signMessageEIP712/mem.h

20 lines
299 B
C
Raw Normal View History

2022-05-02 14:41:00 +02:00
#ifndef MEM_H_
#define MEM_H_
#ifdef HAVE_EIP712_FULL_SUPPORT
2022-05-02 14:41:00 +02:00
#include <stdlib.h>
void mem_init(void);
void mem_reset(void);
void *mem_alloc(size_t size);
void mem_dealloc(size_t size);
#ifdef DEBUG
extern size_t mem_max;
#endif
#endif // HAVE_EIP712_FULL_SUPPORT
2022-05-02 14:41:00 +02:00
#endif // MEM_H_