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,23 @@
/*
* MCU renderer fontconv
* Utilities
*
* (C) 2023 Gissio
*
* License: MIT
*/
#if !defined(UTILS_H)
#define UTILS_H
#include <set>
#include <string>
#include "Font.h"
std::string to_lower(std::string str);
std::string to_upper(std::string str);
std::vector<std::string> split(std::string &str, char c);
std::set<Charcode> parseCharcodes(std::string &charcodes);
#endif