aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mcufontencoder/src/export_bwfont.hh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mcufontencoder/src/export_bwfont.hh')
-rw-r--r--tools/mcufontencoder/src/export_bwfont.hh16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/mcufontencoder/src/export_bwfont.hh b/tools/mcufontencoder/src/export_bwfont.hh
new file mode 100644
index 00000000..64b21bc7
--- /dev/null
+++ b/tools/mcufontencoder/src/export_bwfont.hh
@@ -0,0 +1,16 @@
+// Write out the encoded data in C source code files for mf_bwfont format.
+
+#pragma once
+
+#include "datafile.hh"
+#include <iostream>
+
+namespace mcufont {
+namespace bwfont {
+
+void write_header(std::ostream &out, std::string name, const DataFile &datafile);
+
+void write_source(std::ostream &out, std::string name, const DataFile &datafile);
+
+} }
+