20 lines
236 B
C
20 lines
236 B
C
/*
|
|
* font.h
|
|
*
|
|
* Created on: Jan 15, 2016
|
|
* Author: tkl
|
|
*/
|
|
|
|
#ifndef FONT_H_
|
|
#define FONT_H_
|
|
|
|
struct font {
|
|
int char_size_x;
|
|
int char_size_y;
|
|
int char_between;
|
|
int char_count;
|
|
unsigned char *font;
|
|
};
|
|
|
|
#endif /* FONT_H_ */
|