/* * MCU renderer fontconv * Utilities * * (C) 2023 Gissio * * License: MIT */ #if !defined(UTILS_H) #define UTILS_H #include #include #include "Font.h" std::string to_lower(std::string str); std::string to_upper(std::string str); std::vector split(std::string &str, char c); std::set parseCharcodes(std::string &charcodes); #endif