String and YAML utilities

This commit is contained in:
Nav
2022-07-23 15:36:05 +01:00
parent cf0a103ba4
commit cb577c7acd
4 changed files with 67 additions and 0 deletions

16
src/Helpers/String.hpp Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include <string>
namespace Bloom
{
class String
{
public:
static std::string asciiToLower(std::string str);
static std::string asciiToUpper(std::string str);
static bool isAscii(const std::string& str);
};
}