aboutsummaryrefslogtreecommitdiff
path: root/server/src/util/util.cpp
blob: 799663fc26ce042dbee5a5e50fbe5038ee80d47f (plain) (blame)
1
2
3
4
5
6
7
#include "../include.h"
#include "util.h"


void util::to_lowercase(std::string &str) {
	std::transform(str.begin(), str.end(), str.begin(), ::tolower);
}