remove unnecessary assignments
This commit is contained in:
parent
2446198d70
commit
6826b647c3
@ -49,7 +49,7 @@ int
|
|||||||
_ispunct(int c){ return c != ' ' && !isalnum(c) };
|
_ispunct(int c){ return c != ' ' && !isalnum(c) };
|
||||||
|
|
||||||
int
|
int
|
||||||
_tolower(int c){ return c -= isupper(c) * ('A' - 'a'); }
|
_tolower(int c){ return c - isupper(c) * ('A' - 'a'); }
|
||||||
|
|
||||||
int
|
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