isupper、_isupper_l、iswupper、_iswupper_l
判斷整數是否表示大寫字元。
int isupper(
int c
);
int _isupper_l (
int c,
_locale_t locale
);
int iswupper(
wint_t c
);
int _iwsupper_l(
wint_t c,
_locale_t locale
);
參數
c
要測試的整數。locale
要使用的地區設定。
傳回值
如果 c 是大寫字母的特殊表示,這些常式都會傳回非零。 isupper 會傳回非零的值,如果 c 是大寫字母 (A-Z)。 iswupper 會傳回非零的值,如果 c 是對應至一個大寫字母的寬字元,或者,如果 c 是一個由實作環境如 iswcntrl、 iswdigit、 iswpunct或 iswspace 等都不是零的寬字元。 每一個這些常式在傳入 c 沒有達到測試條件時回傳零。
尾碼為 _l 的這些函式版本與地區設定相關的行為使用了傳入的地區設定,而不是目前的地區設定。 如需詳細資訊,請參閱地區設定。
如果 c 不是 EOF 或介於 0 到 0xFF (含) 之間,isupper 和 _isupper_l 的行為是未定義。 當使用 CRT 偵錯程式庫,而 c 不是其中一個值時,函式會引發判斷提示。
一般文字常式對應
TCHAR.H 常式 |
未定義 _UNICODE & _MBCS |
已定義 _MBCS |
已定義 _UNICODE |
---|---|---|---|
_istupper |
isupper |
iswupper |
|
_istupper_l |
_isupper_l |
_iswupper_l |
需求
常式 |
必要的標頭 |
---|---|
isupper |
<ctype.h> |
_isupper_l |
<ctype.h> |
iswupper |
<ctype.h> 或 <wchar.h> |
_iswupper_l |
<ctype.h> |
如需其他相容性資訊,請參閱 相容性。