isgraph、iswgraph、_isgraph_l、_iswgraph_l
判斷整數是否表示圖形字元。
int isgraph(
int c
);
int iswgraph(
wint_t c
);
int _isgraph_l(
int c,
_locale_t locale
);
int _iswgraph_l(
wint_t c,
_locale_t locale
);
參數
- c
要測試的整數。
傳回值
在 c 不為空白,而為一個可列印字元的特殊表示時,這些常式會傳回非零值。 在 c 不為空白,而是一個可列印字元的特殊表示時,isgraph 會傳回非零值。 在 c 不為寬字元空白,而為一個可列印的寬字元時,iswgraph 會傳回非零值。 每一個這些常式在傳入 c 沒有達到測試條件時回傳零。
尾碼為 _l 的這些函式版本與地區設定相關的行為使用了傳入的地區設定,而不是目前的地區設定。 如需詳細資訊,請參閱地區設定。
如果 c 不是 EOF 或介於 0 到 0xFF (含) 之間,isgraph 和 _isgraph_l 的行為是未定義。 當使用 CRT 偵錯程式庫,而 c 不是其中一個值時,函式會引發判斷提示。
一般文字常式對應
TCHAR.H 常式 |
未定義 _UNICODE & _MBCS |
已定義 _MBCS |
已定義 _UNICODE |
---|---|---|---|
_istgraph |
isgraph |
iswgraph |
|
_istgraph_l |
_isgraph_l |
_iswgraph_l |
需求
常式 |
必要的標頭 |
---|---|
isgraph |
<ctype.h> |
iswgraph |
<ctype.h> 或 <wchar.h> |
_isgraph_l |
<ctype.h> |
_iswgraph_l |
<ctype.h> 或 <wchar.h> |
如需其他相容性資訊,請參閱 相容性。
.NET Framework 對等用法
不適用。若要呼叫標準 C 函式,請使用 PInvoke。如需詳細資訊,請參閱平台叫用範例。