<cctype>
包含标准 C 库标头 <ctype.h> 并将关联名称添加到 std
命名空间。
要求
标头:<cctype>
命名空间: std
备注
包含该标头还将确保使用标准 C 库标头中的外部链接声明的名称在 std
命名空间中声明。
函数
int isalnum(int c);
int isalpha(int c);
int isblank(int c);
int iscntrl(int c);
int isdigit(int c);
int isgraph(int c);
int islower(int c);
int isprint(int c);
int ispunct(int c);
int isspace(int c);
int isupper(int c);
int isxdigit(int c);
int tolower(int c);
int toupper(int c);