FIx header

This commit is contained in:
Diavolo 2022-04-10 15:12:01 +02:00
parent 17059c9ca3
commit bd19102eb7
No known key found for this signature in database
GPG Key ID: FA77F074E98D98A5

View File

@ -77,12 +77,10 @@ namespace Utils
int IsSpace(int c); int IsSpace(int c);
std::string ToLower(std::string text); std::string ToLower(std::string text);
std::string ToUpper(std::string text); std::string ToUpper(std::string text);
bool EndsWith(const std::string& haystack, const std::string& needle);
std::vector<std::string> Split(const std::string& str, const char delim); std::vector<std::string> Split(const std::string& str, const char delim);
void Replace(std::string& string, const std::string& find, const std::string& replace); void Replace(std::string& string, const std::string& find, const std::string& replace);
bool EndsWith(const std::string& haystack, const std::string& needle);
bool StartsWith(const std::string& haystack, const std::string& needle); bool StartsWith(const std::string& haystack, const std::string& needle);
std::vector<std::string> Split(const std::string& str, const char delim); bool EndsWith(const std::string& haystack, const std::string& needle);
std::string& LTrim(std::string& str); std::string& LTrim(std::string& str);
std::string& RTrim(std::string& str); std::string& RTrim(std::string& str);