I've noticed that srfi-13.c very frequently does: uc_tolower (uc_toupper (x))
Is there a good reason to do this instead of:
uc_tolower (x)
?
Mark
I've noticed that srfi-13.c very frequently does: uc_tolower (uc_toupper (x))
Is there a good reason to do this instead of:
uc_tolower (x)
?
Mark