1 /* 2 * Copyright 2021, Adrien Destugues <pulkomandy@pulkomandy.tk> 3 * Distributed under terms of the MIT license. 4 */ 5 6 #ifndef FONT_H 7 #define FONT_H 8 9 10 #include <stdint.h> 11 12 13 struct FramebufferFont { 14 int glyphWidth; 15 int glyphHeight; 16 uint8_t data[]; 17 }; 18 19 20 extern FramebufferFont smallFont; 21 extern FramebufferFont bigFont; 22 23 24 #endif /* !FONT_H */ 25