1. 定義
位於標頭檔案
1.1 tolower
tolower 函式用於將字元轉換為小寫形式, 如果引數 ch 是大寫字母,則返回對應的小寫字母;否則返回原始字元。
int tolower(int ch);
1.2 toupper
toupper 函式用於將字元轉換為大寫形式, 如果引數 ch 是小寫字母,則返回對應的大寫字母;否則返回原始字元。
int toupper(int ch);
1.3 islower 和 isupper
islower 函式用於檢查字元是否為小寫字母, 如果引數 ch 是小寫字母,則返回非零值(通常是1);否則返回0。
int islower(int ch);
isupper 函式用於檢查字元是否為大寫字母, 如果引數 ch 是大寫字母,則返回非零值(通常是1);否則返回0
int isupper(int ch);