blob: cbf3772969cc25c682f70acba59eb3775c65d6eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LIBFONT_BDF_H
#define LIBFONT_BDF_H
#include <libfont/fonts.h>
#include <knob/file.h>
#include <stdbool.h>
bool try_load_bdf(struct file *f, struct font_info *into);
#endif
|