00001 /* 00002 * File: font.h 00003 * Purpose: Font 00004 * Author: Peter Ivanov 00005 * Modified by: 00006 * Created: 2007-05-19 11:29:32 00007 * Last modify: 2007-10-03 21:08:06 ivanovp {Time-stamp} 00008 * Copyright: (C) Peter Ivanov, 2007 00009 * Licence: GPL 00010 */ 00016 #ifndef __INCLUDE_FONT_H 00017 #define __INCLUDE_FONT_H 00018 00019 #define FONT_WIDTH 8 00020 #define FONT_HEIGHT 11 00021 00022 extern const unsigned char font_digits [256 * FONT_HEIGHT]; 00023 00024 #endif // __INCLUDE_FONT_H
1.5.1