]>
Commit | Line | Data |
---|---|---|
cdde55f5 JW |
1 | #ifndef _TEXT_H |
2 | ||
3 | #include <stdint.h> | |
4 | ||
5 | extern void text_init(); | |
66cd7e82 | 6 | extern void text_render(char *buf, int x, int y, int w, int h); |
cdde55f5 JW |
7 | extern uint32_t text_checksum(int x, int y, int w, int h); |
8 | ||
9 | #endif |