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