fix in tolow

This commit is contained in:
p.kosyh 2011-02-27 17:01:31 +00:00
parent 62424ab127
commit ead598e4df

View file

@ -5,7 +5,8 @@
void tolow(char *p)
{
while (*p) {
*p |= 0x20;
if (*p >= 'A' && *p <= 'Z')
*p |= 0x20;
p ++;
}
}