1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 02:19:21 +00:00
trezor-firmware/gen/fonts.h

14 lines
203 B
C
Raw Normal View History

2014-04-29 12:26:51 +00:00
#ifndef __FONTS_H__
#define __FONTS_H__
#include <stdint.h>
#define FONT_HEIGHT 8
2015-02-15 19:47:53 +00:00
extern const uint8_t * const font_data[256];
2014-04-29 12:26:51 +00:00
2015-02-13 14:37:23 +00:00
int fontCharWidth(char c);
const uint8_t *fontCharData(char c);
2014-04-29 12:26:51 +00:00
#endif