Files
BloomPatched/src/Helpers/String.hpp

17 lines
266 B
C++
Raw Normal View History

2022-07-23 15:36:05 +01:00
#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);
};
}