font.h 200 B

123456789101112
  1. #ifndef __LIB_FONT_H
  2. #define __LIB_FONT_H
  3. #include <lib/gfx.h>
  4. #define FONT_X 6
  5. #define FONT_Y 12
  6. void font_draw_char(gfx_surface *surface, unsigned char c, int x, int y, uint32_t color);
  7. #endif