__iscsym、 __iswcsym、 __iscsymf、 __iswcsymf、 _iscsym_l、 _iswcsym_l、 _iscsymf_l、 _iswcsymf_l
判斷是否整數表示的字元,不得使用於識別項。
int __iscsym(
int c
);
int __iswcsym(
wint_t c
);
int __iscsymf(
int c
);
int __iswcsymf(
wint_t c
);
int _iscsym_l(
int c,
_locale_t locale
);
int _iswcsym_l(
wint_t c,
_locale_t locale
);
int _iscsymf_l(
int c,
_locale_t locale
);
int _iswcsymf_l(
wint_t c,
_locale_t locale
);
參數
c
若要測試的整數。 c這個值應該介於 0-255 窄字元版本的函式。locale
若要使用地區設定。
傳回值
__iscsym如果傳回非零值c是字母、 底線或數字。 __iscsymf傳回非零的值,如果c是一個字母或底線。 每個這些常式會傳回 0,如果c初始條件未滿足測試條件。 這些常式都巨集,所以要小心使用與引數清單中的副作用的運算式 引數會評估一次以上。
使用這些函式的版本_l尾碼完全相同,不同之處在於它們使用傳遞中而不是目前的地區設定的地區設定相關行為的地區設定。 如需詳細資訊,請參閱 地區設定。
下表顯示這些巨集的每個對等的運算式:
巨集 |
對等用法 |
---|---|
__iscsym(c) |
(isalnum(c) || ((c) == '_')) |
__iswcsym(c) |
(iswalnum(c) || ((c) == '_')) |
__iscsymf(c) |
(isalpha(c) || ((c) == '_')) |
__iswcsymf(c) |
(iswalpha(c) || ((c) == '_')) |
需求
常式 |
所需的標頭 |
---|---|
__iscsym |
<ctype.h> |
__iswcsym |
<ctype.h> |
__iscsymf |
<ctype.h> |
__iswcsymf |
<ctype.h> |
_iscsym_l |
<ctype.h> |
_iswcsym_l |
<ctype.h> |
_iscsymf_l |
<ctype.h> |
_iswcsymf_l |
<ctype.h> |
其他的相容性資訊,請參閱相容性在簡介中。