Files
hush3/src/crypto/bip39/memzero.h
Jonathan "Duke" Leto 820a48bb73 Add trezor bip39 code
2020-09-04 22:50:23 -07:00

9 lines
123 B
C

#ifndef __MEMZERO_H__
#define __MEMZERO_H__
#include <stddef.h>
void memzero(void* const pnt, const size_t len);
#endif