tabs
This commit is contained in:
parent
5e488fac8a
commit
24b947500f
@ -26,8 +26,8 @@ lowercase_term(std::string &term)
|
|||||||
{
|
{
|
||||||
std::string::iterator i = term.begin();
|
std::string::iterator i = term.begin();
|
||||||
while (i != term.end()) {
|
while (i != term.end()) {
|
||||||
if (*i >= 'A' && *i <= 'Z')
|
if (*i >= 'A' && *i <= 'Z')
|
||||||
*i = *i + 'a' - 'A';
|
*i = *i + 'a' - 'A';
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user