C语言大小写转换宏

#define _toupper(c) ((c)+'A'-'a')
#define _tolower(c) ((c)+'a'-'A')

你可能感兴趣的:(C)