mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-01-13 07:09:44 +00:00
12 lines
118 B
C
12 lines
118 B
C
/*
|
|
* font.h
|
|
*/
|
|
|
|
#ifndef FONT_H
|
|
#define FONT_H
|
|
|
|
void font_load();
|
|
char char_row(char c, char row);
|
|
|
|
#endif // FONT_H
|