次の方法で共有


<cwctype>

従来標準 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

解説

このヘッダーが標準 C ライブラリのヘッダーの外部リンケージで宣言した名前が std の名前空間で宣言されていることも確認します。この実装では名前はこともあればまたはグローバル名前空間に特定の移動の環境によって宣言されていない可能性があります。

参照

関連項目

C++ の標準ライブラリの概要

C++ の標準ライブラリのスレッド セーフ

その他の技術情報

ヘッダー ファイル