mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 01:30:19 +00:00
11 lines
262 B
C
11 lines
262 B
C
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
bool translations_write(const uint8_t* data, uint32_t offset, uint32_t len);
|
||
|
|
||
|
const uint8_t* translations_read(uint32_t* len, uint32_t offset);
|
||
|
|
||
|
void translations_erase(void);
|
||
|
|
||
|
uint32_t translations_area_bytesize(void);
|