_ismbbkprint _ismbbkprint_l
判斷特定多位元組字元是否為標點符號。
重要
這個 API 不能用於 Windows 執行階段執行的應用程式。如需詳細資訊,請參閱 CRT 函式不支援使用 /ZW。
int _ismbbkprint(
unsigned int c
);
int _ismbbkprint_l(
unsigned int c,
_locale_t locale
);
參數
c
要測試的整數。locale
使用的地區設定。
傳回值
_ismbbkprint 會傳回非零的值,如果整數 c 為非 ASCII 文字或非 ASCII 標點符號或 0。 例如,在字碼頁 932 中, _ismbbkprint 會測試片假名英數或片假名標點符號 (範圍:0xA1 – 0xDF)。 _ismbbkprint 為地區設定相關字元將使用目前的地區設定。 _ismbbkprint_l相同,但是使用傳遞的地區設定。 如需詳細資訊,請參閱地區設定。
需求
程序 |
必要的標頭檔 |
---|---|
_ismbbkprint |
<mbctype.h> |
_ismbbkprint_l |
<mbctype.h> |
如需更多關於相容性的資訊,請參閱入門介紹中的 相容性 (Compatibility) 。
.NET Framework 對等用法
不適用。若要呼叫標準 C 函式,請使用 PInvoke。如需更多的資訊,請參閱 Platform Invoke Examples 。