20 lines
292 B
C
20 lines
292 B
C
|
|
#ifndef FBFONTS_H
|
|
#define FBFONTS_H
|
|
|
|
struct s_fbfont {
|
|
unsigned char width;
|
|
unsigned char height;
|
|
short offset;
|
|
char *xbm;
|
|
};
|
|
|
|
typedef struct s_fbfont fbfont;
|
|
|
|
extern fbfont basic_8;
|
|
extern fbfont arial_24;
|
|
extern fbfont ubuntu_mono_24;
|
|
extern fbfont ubuntu_mono_48;
|
|
|
|
#endif
|