//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template <> class codecvt // result in(stateT& state, // const externT* from, const externT* from_end, const externT*& from_next, // internT* to, internT* to_end, internT*& to_next) const; #include #include #include #include typedef std::codecvt F; int main() { std::locale l = std::locale::classic(); const std::basic_string from("some text"); const std::basic_string expected(from.begin(), from.end()); std::basic_string to(from.size(), F::intern_type()); const F& f = std::use_facet(l); std::mbstate_t mbs = {0}; const F::extern_type* from_next = 0; F::intern_type* to_next = 0; F::result r = f.in(mbs, from.data(), from.data() + from.size(), from_next, &to[0], &to[0] + to.size(), to_next); assert(r == F::ok); assert(from_next - from.data() == from.size()); assert(to_next - to.data() == expected.size()); assert(to_next - to.data() == expected.size()); assert(to == expected); }