22 lines
361 B
C++
22 lines
361 B
C++
/*
|
|
* MCU renderer fontconv
|
|
* Font export
|
|
*
|
|
* (C) 2023 Gissio
|
|
*
|
|
* License: MIT
|
|
*/
|
|
|
|
#if !defined(EXPORT_C_H)
|
|
#define EXPORT_C_H
|
|
|
|
#include "font.h"
|
|
|
|
void exportFont(Font &font,
|
|
std::string variableName,
|
|
std::string charcodes,
|
|
std::vector<uint8_t> &fontData,
|
|
std::string filename);
|
|
|
|
#endif
|