aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mcufontencoder/src/export_rlefont.hh
blob: c01c56446898d383a541c53ae8f97902ff373911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Write out the encoded data in C source code files for the mf_rlefont format.

#pragma once

#include "datafile.hh"
#include "encode_rlefont.hh"
#include <iostream>

namespace mcufont {
namespace rlefont {

void write_source(std::ostream &out, std::string name, const DataFile &datafile);

} }