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