blob: c209c61fb491d52640ecd560af007ba2ed15da14 [file] [log] [blame]
Travis Geiselbrecht99b2d1d2010-05-21 22:57:18 -07001#ifndef __LIB_FONT_H
2#define __LIB_FONT_H
3
4#include <lib/gfx.h>
5
6#define FONT_X 6
7#define FONT_Y 12
8
9void font_draw_char(gfx_surface *surface, unsigned char c, int x, int y, uint32_t color);
10
11#endif
12