1 /* Tiny library for rendering compressed bitmap fonts on microcontrollers. */ 2 3 #ifndef _MCUFONT_H_ 4 #define _MCUFONT_H_ 5 6 #include "mf_config.h" 7 #include "mf_encoding.h" 8 #include "mf_justify.h" 9 #include "mf_kerning.h" 10 #include "mf_rlefont.h" 11 #include "mf_scaledfont.h" 12 #include "mf_wordwrap.h" 13 14 #endif 15