Partager via


<cwctype>

Définit les macros sont généralement définies dans l'en-tête standard de bibliothèque C <wctype.h> .

#if <TRADITIONAL C HEADERS>
   #include <wctype.h>
namespace std {
   using ::iswalnum; 
   using ::iswalpha; 
   using ::iswcntrl;
   using ::iswctype; 
   using ::iswdigit; 
   using ::iswgraph;
   using ::iswlower; 
   using ::iswprint; 
   using ::iswpunct;
   using ::iswspace; 
   using ::iswupper; 
   using ::iswxdigit;
   using ::towctrans; 
   using ::towlower; 
   using ::towupper;
   using ::wctrans; 
   using ::wctrans_t; 
   using ::wctype;
   using ::wctype_t;
   using ::wint_t; 
}

#undef iswalnum
#undef iswalpha
#undef iswcntrl
#undef iswctype
#undef iswdigit
#undef iswgraph
#undef iswlower
#undef iswprint
#undef iswpunct
#undef iswspace
#undef iswupper
#undef iswxdigit
#undef towctrans
#undef towlower
#undef towupper
#undef wctrans
#undef wctype

#endif

Notes

Notamment cet en-tête garantit également que les noms déclarés avec la liaison externe dans l'en-tête standard de bibliothèque C sont déclarés dans l'espace de noms de type .Dans cette implémentation, les noms peuvent ou non peuvent également être déclarés dans l'espace de noms global, selon l'environnement spécifique de traduction.

Voir aussi

Référence

Vue d'ensemble de la bibliothèque C++ standard

Sécurité des threads dans la bibliothèque C++ standard

Autres ressources

Fichiers d'en-tête