#ifndef _FONTS_H
#define _FONTS_H

#include "oswald.h"


#ifndef FONT_6x9
#define FONT_5x8 0x10
/* ...to make conpiler happy while I fix all references */
#define FONT_6x9 0
#define FONT_LCD13x21 1
#define FONT_LCD8x13 2
#define FONT_DROID8x12 3
#define FONT_5x7 4
#define FONT_DROID8x12b 5
#endif

typedef int oswald_font_face;

extern const unsigned char font5x8[];

#endif