mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
7 lines
75 B
C
7 lines
75 B
C
|
#include <string.h>
|
||
|
|
||
|
void memzero(void *s, size_t n)
|
||
|
{
|
||
|
memset(s, 0, n);
|
||
|
}
|