1
0

remove unnecessary assignments

This commit is contained in:
dtb 2022-08-13 16:32:55 -04:00
parent 2446198d70
commit 6826b647c3

View File

@ -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'); }