<cwctype>
표준 C 라이브러리 헤더 <wctype.h> 를 포함하고 연결된 이름을 네임스페이 std
스에 추가합니다.
구문
#include <cwctype>
설명
이 헤더를 포함하는 경우 표준 C 라이브러리 헤더의 외부 링크를 사용하여 선언한 이름이 std
네임스페이스에도 선언됩니다.
상수
namespace std {
using wint_t = see below ;
using wctrans_t = see below ;
using wctype_t = see below ;
}
#define WEOF see below
함수
int iswalnum(wint_t wc);
int iswalpha(wint_t wc);
int iswblank(wint_t wc);
int iswcntrl(wint_t wc);
int iswdigit(wint_t wc);
int iswgraph(wint_t wc);
int iswlower(wint_t wc);
int iswprint(wint_t wc);
int iswpunct(wint_t wc);
int iswspace(wint_t wc);
int iswupper(wint_t wc);
int iswxdigit(wint_t wc);
int iswctype(wint_t wc, wctype_t desc);
wctype_t wctype(const char* property);
wint_t towlower(wint_t wc);
wint_t towupper(wint_t wc);
wint_t towctrans(wint_t wc, wctrans_t desc);
wctrans_t wctrans(const char* property);