11 lines
263 B
C
Raw Normal View History

2024-03-01 14:50:55 +08:00
#ifndef SLED_STRINGS_UTILS_H
#define SLED_STRINGS_UTILS_H
namespace sled {
std::string ToLower(const std::string &str);
std::string ToUpper(const std::string &str);
std::string ToHex(const std::string &str);
} // namespace sled
#endif // SLED_STRINGS_UTILS_H