fonts.h 298 B

123456789101112131415161718
  1. /* vim: set ai et ts=4 sw=4: */
  2. #ifndef __FONTS_H__
  3. #define __FONTS_H__
  4. #include <stdint.h>
  5. typedef struct {
  6. const uint8_t width;
  7. uint8_t height;
  8. const uint16_t *data;
  9. } FontDef;
  10. extern FontDef Font_7x10;
  11. extern FontDef Font_11x18;
  12. extern FontDef Font_16x26;
  13. #endif // __FONTS_H__