remove unnecessary assignments
This commit is contained in:
parent
2446198d70
commit
6826b647c3
@ -49,7 +49,7 @@ int
|
||||
_ispunct(int c){ return c != ' ' && !isalnum(c) };
|
||||
|
||||
int
|
||||
_tolower(int c){ return c -= isupper(c) * ('A' - 'a'); }
|
||||
_tolower(int c){ return c - isupper(c) * ('A' - 'a'); }
|
||||
|
||||
int
|
||||
_toupper(int c){ return c += islower(c) * ('A' - 'a'); }
|
||||
_toupper(int c){ return c + islower(c) * ('A' - 'a'); }
|
||||
|
Loading…
Reference in New Issue
Block a user