实现函数如下:static char* str2upper(char *str) { if(str == NULL) return NULL; char *p = str; while(*str){ *str = toupper(*str); str++; } return p; }
確定! 回上一頁