caddit/fonts.h

13 lines
271 B
C
Raw Normal View History

2019-05-29 20:25:43 +02:00
#ifndef FONTS_H
#define FONTS_H
struct Font {
unsigned long ltr[220][2]; //an array of longs for each character
char length[220]; //array of chars for the length of each character
};
extern struct Font normfont;
int dispStr(unsigned char* str, int x, int y);
#endif