Añadida la funcion toLower()

This commit is contained in:
2023-02-13 11:29:39 +01:00
parent abe48d5995
commit 10e9abece9
2 changed files with 19 additions and 1 deletions

View File

@@ -200,4 +200,7 @@ bool stringToBool(std::string str);
// Convierte un valor booleano en una cadena
std::string boolToString(bool value);
// Convierte una cadena a minusculas
std::string toLower(std::string str);
#endif