1 
2 /*=============================================================================
3   bmplib, a simple library to create, modify, and write BMP image files.
4   Copyright (C) 2009-2014 by Zack T Smith.
5 
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License version 2
8   as published by the Free Software Foundation.
9 
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14 
15   You should have received a copy of the GNU General Public License
16   along with this program; if not, write to the Free Software
17   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 
19   The author may be reached at 1@zsmith.co.
20  *============================================================================*/
21 
22 #ifndef _FONT_H
23 #define _FONT_H
24 
25 extern const char **get_font_chars (void);
26 
27 #endif
28 
29