mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 06:59:01 +00:00
9 lines
123 B
C
9 lines
123 B
C
#ifndef __MEMZERO_H__
|
|
#define __MEMZERO_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
void memzero(void* const pnt, const size_t len);
|
|
|
|
#endif
|