17 lines
301 B
C
17 lines
301 B
C
#ifndef FONT_H
|
|
#define FONT_H
|
|
|
|
#include "../compat/pgmspace.h"
|
|
|
|
typedef struct{
|
|
unsigned char fontHeight;
|
|
const unsigned int* fontIndex;
|
|
const unsigned char* fontData;
|
|
unsigned char glyph_beg;
|
|
unsigned char glyph_end;
|
|
unsigned char glyph_def;
|
|
unsigned char storebytes;
|
|
} font;
|
|
|
|
#endif //FONT_H
|