tolower.c 84 B

12345
  1. #include <ctype.h>
  2. int tolower(int c) {
  3. return isupper(c) ? c - 'A' + 'a' : c ;
  4. }