blob: ad7b1fd304b95e160fe4ae6434f0303526397644 [file] [log] [blame]
Travis Geiselbrecht801509f2010-05-21 23:02:04 -07001#ifndef __LIB_TEXT_H
2#define __LIB_TEXT_H
3
4#include <lib/font.h>
5
6/* super cheezy mechanism to stick lines of text up on top of whatever is being drawn */
7/* XXX replace with something more generic later */
8void text_draw(int x, int y, const char *string);
9
10/* super dumb, someone has to call this to refresh everything */
11void text_update(void);
12
13#endif
14