Project

General

Profile

Statistics
| Revision:

root / proj / include / font.h @ 182

History | View | Annotate | Download (236 Bytes)

1 182 up20180642
#ifndef FONT_H_INCLUDED
2
#define FONT_H_INCLUDED
3
4
struct glyph;
5
typedef struct glyph glyph_t;
6
7
glyph_t* (glyph_ctor)(const char **xpm);
8
void     (glyph_dtor)(glyph_t *p);
9
10
//glyph_t** (get_font)(const char *s);
11
12
#endif //FONT_H_INCLUDED