// ---------------------------------------------------------------------- // // multibyt.cc - Are 's multi-byte functions in namespace std::? // // History: // 25-Jun-1999 WEB Initial draft, copied from cstlbstd.cc // 15-Feb-2000 WEB Update to correspond to revised USING macro // 25-Apr-2001 WEB s//"ISOcxx\/ISOcxxSyntax.hh"/ // // ---------------------------------------------------------------------- #include "ISOcxx/ISOcxxSyntax.hh" #include BEGIN_NAMESPACE( test ) // multi-byte functions USING( std::mblen ) USING( std::mbstowcs ) USING( std::mbtowc ) USING( std::wcstombs ) USING( std::wctomb ) int f() { return 0; } END_NAMESPACE( test ) int main() { USING( test::f ) return f(); } // main()