4 lines
58 B
C
4 lines
58 B
C
|
int islower(int c) {
|
||
|
return (c >= 'a' && c <= 'z');
|
||
|
}
|