_isctype、iswctype、_isctype_l、_iswctype_l
為 desc 引數所指定的屬性來測試 c 。 針對 desc的每一個有效值,具有對等寬字元排序常式。
int _isctype(
int c,
_ctype_t desc
);
int _isctype_l(
int c,
_ctype_t desc,
_locale_t locale
);
int iswctype(
wint_t c,
wctype_t desc
);
int _iswctype_l(
wint_t c,
wctype_t desc,
_locale_t locale
);
參數
c
要測試的整數。desc
屬性測試。 通常使用 ctype 或 wctype,來擷取。locale
使用的地區設定為所有與地區設定相關的測試。
傳回值
_isctype 和 iswctype 傳回非零的值,如果 c 有 desc 指定的屬性在目前地區設定或 0。 尾碼為 _l 的這些函式版本是一樣的,只不過與地區設定相關的行為使用了傳入的地區設定,而不是目前的地區設定。 如需詳細資訊,請參閱地區設定。
如果 c 不是 EOF 或介於 0 到 0xFF (含) 之間,_isctype 和 _isctype_l 的行為是未定義。 當使用 CRT 偵錯程式庫,而 c 不是其中一個值時,函式會引發判斷提示。
一般文字常式對應
Tchar.h 常式 |
未定義 _UNICODE and _MBCS |
已定義 _MBCS |
已定義 _UNICODE |
---|---|---|---|
n/a |
_isctype |
n/a |
_iswctype |
n/a |
_isctype_l |
n/a |
_iswctype_l |
需求
常式 |
必要的標頭 |
---|---|
_isctype |
<ctype.h> |
iswctype |
<ctype.h> 或 <wchar.h> |
_isctype_l |
<ctype.h> |
_iswctype_l |
<ctype.h> 或 <wchar.h> |
如需更多關於相容性的資訊,請參閱入門介紹中的 相容性 (Compatibility) 。
程式庫
C 執行階段程式庫的所有版本。
.NET Framework 對等用法
不適用。若要呼叫標準 C 函式,請使用 PInvoke。如需詳細資訊,請參閱平台叫用範例。