#pragma once #include #include struct glyph { size_t offset; uint8_t width; }; struct font { const struct glyph *ucs2glyph; const uint8_t *data; size_t max_ucs; uint8_t height; };