mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-23 07:58:09 +00:00
16 lines
260 B
C
16 lines
260 B
C
|
#ifndef __FONTS_H__
|
||
|
#define __FONTS_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define FONT_START 32
|
||
|
#define FONT_END 128
|
||
|
#define FONT_HEIGHT 8
|
||
|
|
||
|
int fontCharWidth(char c);
|
||
|
int fontStringWidth(const char *s);
|
||
|
|
||
|
extern const uint8_t *font_data[FONT_END - FONT_START + 1];
|
||
|
|
||
|
#endif
|