blob: c78c6407a6d00466f8d0cd69f8a1da39929d6ff6 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef LIBFONT_FILIST_H
#define LIBFONT_FILIST_H
struct font_info *find_entry(const char *name) __attribute__ ((pure));
struct font_info *new_entry(const char *name);
void del_last();
#endif
|