First init.

This commit is contained in:
2025-10-12 09:13:56 +02:00
commit 1548aeaf9b
458 changed files with 118808 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/*
* 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