<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);

참고 항목

헤더 파일 참조
C++ 표준 라이브러리 개요
C++ 표준 라이브러리의 스레드 보안