String and YAML utilities
This commit is contained in:
16
src/Helpers/String.hpp
Normal file
16
src/Helpers/String.hpp
Normal 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);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user