1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 21:48:13 +00:00
trezor-firmware/memzero.h

9 lines
124 B
C
Raw Normal View History

#ifndef __MEMZERO_H__
#define __MEMZERO_H__
#include <stddef.h>
2019-01-23 18:39:17 +00:00
void memzero(void * const pnt, const size_t len);
#endif