fix TOLOWER, it was equal to TOUPPER

This commit is contained in:
Hallvard Furuseth 1999-02-20 16:22:10 +00:00
parent 0fe0efeeac
commit 19c2a483e6

View file

@ -16,7 +16,7 @@
#ifdef C_UPPER_LOWER
# define TOUPPER(c) (islower(c) ? toupper(c) : (c))
# define TOLOWER(c) (islower(c) ? toupper(c) : (c))
# define TOLOWER(c) (isupper(c) ? tolower(c) : (c))
#else
# define TOUPPER(c) toupper(c)
# define TOLOWER(c) tolower(c)