9 lines
146 B
C
9 lines
146 B
C
#ifndef FB_TEXT_H
|
|
#define FB_TEXT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void fb_text_render_char(int c, int x, int y, uint8_t r, uint8_t g, uint8_t b);
|
|
|
|
#endif
|