summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/screen/font.h
blob: 24b745e4146eee2ffec70082f4fee97f04d7a3a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdint.h>

typedef struct EVEFont {
    uint8_t id;
    uint8_t w[128];
    uint8_t h;
} EVEFont;

void eve_font_init(EVEFont *font, uint8_t font_id);
uint16_t eve_font_string_width(EVEFont *font, char *s);
uint8_t eve_font_height(EVEFont *font);