__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
使用的区域设置。
返回值
,如果 c 是字母、下划线或数字,__iscsym 返回一个非零值。 ,如果 c 是字母或下划线,iscsymf 返回一个非零值。 ,如果 c 不满足测试条件,其中每个实例返回 0。 这两个实例是宏,因此,使用副作用的表达式小心在参数列表;参数多次将计算。
这些功能的版本与 _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 |
有关其他的兼容性信息,请参见中介绍的 兼容性 。