libmrbesen/inc/util.h

13 lines
301 B
C++

#pragma once
#include <string>
namespace mrbesen::Util {
unsigned int count(const std::string& str, char c); //count occurances of c in str
bool equalsIgnoreCase(const std::string& a, const std::string& b, size_t max = std::string::npos);
void toLower(const std::string& in, std::string& out);
}