6 lines
84 B
C
6 lines
84 B
C
|
#include <ctype.h>
|
||
|
|
||
|
int tolower(int c) {
|
||
|
return isupper(c) ? c - 'A' + 'a' : c ;
|
||
|
}
|