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


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