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();
|
||||
while (i != term.end()) {
|
||||
if (*i >= 'A' && *i <= 'Z')
|
||||
*i = *i + 'a' - 'A';
|
||||
if (*i >= 'A' && *i <= 'Z')
|
||||
*i = *i + 'a' - 'A';
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user