mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
14 lines
203 B
C
14 lines
203 B
C
#ifndef __FONTS_H__
|
|
#define __FONTS_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
#define FONT_HEIGHT 8
|
|
|
|
extern const uint8_t * const font_data[256];
|
|
|
|
int fontCharWidth(char c);
|
|
const uint8_t *fontCharData(char c);
|
|
|
|
#endif
|