fbpad: support multiple fonts
[fbpad.git] / font.h
blobc69d5cad509ce627554307b2ee8611cb7477a072
1 #define MAXDOTS (1 << 10)
3 struct font *font_open(char *path);
4 void font_free(struct font *font);
5 int font_rows(struct font *font);
6 int font_cols(struct font *font);
7 int font_bitmap(struct font *font, void *dst, int c);