/** * UTF-8 capable bitmap font * * Created on 2020/01/04. */ #ifndef GFX_FONT_H #define GFX_FONT_H #include "font.h" #include "utf8.h" #include struct FontGraphic { uint8_t columns[5]; }; const struct FontGraphic *Font_GetSymbol(struct Utf8Char ch); #endif //GFX_FONT_H