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
若要使用的地區設定。
傳回值
每個這些常式傳回非零的 if c是特定的大寫字母表示。 isupper如果傳回非零值c是大寫的字元 (A – Z)。 iswupper傳回非零的值,如果c是廣泛的字元相對於大寫字母,或是否c代表的哪一個值不是其中一個實作定義一組寬字元iswcntrl, iswdigit, iswpunct,或iswspace不是零。 每個這些常式會傳回 0,如果c初始條件未滿足測試條件。
偵錯 CRT 程式庫,搭配使用時isupper會顯示 CRT 判斷提示運算如果傳遞的參數,並不是 EOF 或 0 到 0xFF 的範圍。 偵錯 CRT 程式庫,搭配使用時isupper會使用參數作為索引一個陣列,與未定義的結果,如果參數不是 EOF 或 0 到 0xFF 的範圍內。
使用這些函式的版本_l尾碼完全相同,不同之處在於它們使用傳遞中而不是目前的地區設定的地區設定相關行為的地區設定。 如需詳細資訊,請參閱 地區設定。
泛用文字常式對應
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> |
其他的相容性資訊,請參閱相容性在簡介中。