// ---------------------------------------------------------------------- // // wchart.cc - Does have the wchar_t type? // // History: // 17-Sep-1999 WEB Initial draft, adapted from bool.cc // 25-Apr-2001 WEB s//"ISOcxx\/ISOcxxSyntax.hh"/ // // ---------------------------------------------------------------------- #include "ISOcxx/ISOcxxSyntax.hh" int foo( wchar_t & c ) { c = L'b'; return 0; } int main() { wchar_t c( L'a' ); return foo( c ); } // main()