/* Copyright (C) 1995 Eddie C. Dost
This file is part of the HP48 C Library.
The HP48 C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License
as published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The HP48 C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details. */
struct font
{
short width;
short heigth;
unsigned char *data;
};
unsigned char font_data_8[3][8] =
{
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
{ 0x04, 0x04, 0x04, 0x04, 0x04, 0x00, 0x04, 0x00 },
{ 0x0a, 0x0a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 }
};
syntax highlighted by Code2HTML, v. 0.9.1