Añadida la función boolToOnOff

This commit is contained in:
2024-09-15 18:11:20 +02:00
parent b6c5d06246
commit 85a082d738
2 changed files with 42 additions and 47 deletions

View File

@@ -272,6 +272,9 @@ bool stringToBool(std::string str);
// Convierte un valor booleano en una cadena
std::string boolToString(bool value);
// Convierte un valor booleano en una cadena "on" o "off"
std::string boolToOnOff(bool value);
// Convierte una cadena a minusculas
std::string toLower(std::string str);