61static inline int toupper(int chr). 62{. 63 return (int)((chr >= (int)'a' && chr <= 64 (int)'z') ? (chr - 32) : (chr));.
確定! 回上一頁