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