6 lines
124 B
C
6 lines
124 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
#include <cctype>
|
||
|
|
#include <algorithm>
|
||
|
|
|
||
|
|
std::string Tool_toLowerCase(const std::string &str);
|