summaryrefslogtreecommitdiff
path: root/src/user/libfont/bdf.h
diff options
context:
space:
mode:
authorBenji Dial <benji6283@gmail.com>2021-02-17 16:35:02 -0500
committerBenji Dial <benji6283@gmail.com>2021-02-17 16:35:02 -0500
commit3a3602861226e995d95a8898668cd559c3ca1cf6 (patch)
tree0d5bc0494297a12e9ccb76b31cb365c843216735 /src/user/libfont/bdf.h
parent49d76d30a55707e2bf95fd9ba03296489fac8d1d (diff)
downloadportland-os-3a3602861226e995d95a8898668cd559c3ca1cf6.tar.gz
quick bitmap font format, borrowing new default font from X
Diffstat (limited to 'src/user/libfont/bdf.h')
-rw-r--r--src/user/libfont/bdf.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/user/libfont/bdf.h b/src/user/libfont/bdf.h
index 4ed4189..cbf3772 100644
--- a/src/user/libfont/bdf.h
+++ b/src/user/libfont/bdf.h
@@ -1,8 +1,11 @@
#ifndef LIBFONT_BDF_H
#define LIBFONT_BDF_H
+#include <libfont/fonts.h>
+#include <knob/file.h>
+
#include <stdbool.h>
-bool try_load_bdf(const char *path, struct font_info *into);
+bool try_load_bdf(struct file *f, struct font_info *into);
#endif \ No newline at end of file