17 lines
214 B
C
17 lines
214 B
C
|
|
#ifndef FBFONTS_H
|
|
#define FBFONTS_H
|
|
|
|
struct s_fbfont {
|
|
unsigned char width;
|
|
unsigned char height;
|
|
char *xbm;
|
|
};
|
|
|
|
typedef struct s_fbfont fbfont;
|
|
|
|
extern fbfont arial_32;
|
|
extern fbfont basic_8;
|
|
|
|
#endif
|