Espacios de nombres
Variantes

Archivo de encabezado de la biblioteca estándar <cctype>

De cppreference.com
 
 
Archivos de encabezado de la biblioteca estándar
 

Este archivo de encabezado se encontraba originalmente en la biblioteca estándar de C como <ctype.h>.

Este archivo de encabezado es parte de la biblioteca de cadenas de bytes terminadas en nulo.

Funciones

Comprueba si un carácter es alfanumérico
Original:
checks if a character is alphanumeric
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter es alfabético
Original:
checks if a character is alphabetic
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter en minúsculas
Original:
checks if a character is lowercase
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter es un carácter en mayúsculas
Original:
checks if a character is an uppercase character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter es un dígito
Original:
checks if a character is a digit
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter es un carácter hexadecimal
(función) [editar]
Comprueba si un carácter es un carácter de control
Original:
checks if a character is a control character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter es un carácter gráfico
Original:
checks if a character is a graphical character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter es un carácter de espacio
Original:
checks if a character is a space character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
(C++11)
Comprueba si un carácter es un carácter en blanco
Original:
checks if a character is a blank character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter es un carácter imprimible
Original:
checks if a character is a printing character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
Comprueba si un carácter es un carácter de puntuación
(función) [editar]
Convierte un carácter a minúsculas
(función) [editar]
Convierte un carácter a mayúsculas
(función) [editar]

Sinopsis

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