1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <stdint.h> typedef struct { uint8_t char_w; uint8_t char_h; uint16_t bytes_per_char; uint8_t *font_bytes; uint8_t *font_lookup; } bitmap_font_t; bitmap_font_t jetbrains_mono_quarter; void set_up_fonts();