1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-09 17:39:04 +00:00
trezor-firmware/memzero.h
2019-01-23 19:39:17 +01:00

9 lines
124 B
C

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