WCTYPE - Linux手册页

时间:2019-08-20 18:01:39  来源:igfitidea点击:

Linux程序员手册 第3部分
更新日期: 2015-08-08

名称

wctype-宽字符分类

语法

#include <wctype.h>

wctype_t wctype(const char *name);

说明

wctype_t类型表示宽字符可能具有或不具有的属性。换句话说,它代表一类宽字符。此类型的性质取决于实现,但是特殊值(wctype_t)0表示无效的属性。可以将非零的wctype_t值传递给iswctype(3)函数,以实际测试给定的宽字符是否具有该属性。

wctype()函数返回一个属性,该属性由其名称给出。有效名称集取决于当前语言环境的LC_CTYPE类别,但是以下名称在所有语言环境中均有效。

"alnum" - realizes the isalnum(3) classification function
    "alpha" - realizes the isalpha(3) classification function
    "blank" - realizes the isblank(3) classification function
    "cntrl" - realizes the iscntrl(3) classification function
    "digit" - realizes the isdigit(3) classification function
    "graph" - realizes the isgraph(3) classification function
    "lower" - realizes the islower(3) classification function
    "print" - realizes the isprint(3) classification function
    "punct" - realizes the ispunct(3) classification function
    "space" - realizes the isspace(3) classification function
    "upper" - realizes the isupper(3) classification function
    "xdigit" - realizes the isxdigit(3) classification function

返回值

如果名称有效,则wctype()函数将返回属性描述符。否则,它返回(wctype_t)0。

属性

有关本节中使用的术语的说明,请参见attribute(7)。

InterfaceAttributeValue
wctype()Thread safetyMT-Safe locale

遵循规范

POSIX.1-2001,POSIX.1-2008,C99。

备注

wctype()的行为取决于当前语言环境的LC_CTYPE类别。

另外参见

iswctype(3)

出版信息

这个页面是Linux手册页项目5.08版的一部分。有关项目的说明、有关报告错误的信息以及此页面的最新版本,请访问https://www.kernel.org/doc/man-pages/