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
若要測試的整數。
傳回值
每個這些常式傳回非零的 if c也代表列印的字元空格以外的特定內容。 isgraph如果傳回非零值c是一個空白以外的可列印字元。 iswgraph如果傳回非零值c可列印的寬字元以外的寬字元空間。 每個這些常式會傳回 0,如果c初始條件未滿足測試條件。
偵錯 CRT 程式庫,搭配使用時isgraph會顯示 CRT 判斷提示運算如果傳遞的參數,並不是 EOF 或 0 到 0xFF 的範圍。 偵錯 CRT 程式庫,搭配使用時isgraph會使用參數作為索引一個陣列,與未定義的結果,如果參數不是 EOF 或 0 到 0xFF 的範圍內。
使用這些函式的版本_l尾碼完全相同,不同之處在於它們使用傳遞中而不是目前的地區設定的地區設定相關行為的地區設定。 如需詳細資訊,請參閱 地區設定。
泛用文字常式對應
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。 如需詳細資訊,請參閱平台叫用範例。