blob: e98097ba889cfbf78e91b06ee2378dffdd8b9bd4 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <locale>
11
12// template <> class codecvt<wchar_t, char, mbstate_t>
13
Howard Hinnant22a74dc2010-08-22 00:39:25 +000014// result in(stateT& state,
15// const externT* from, const externT* from_end, const externT*& from_next,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000016// internT* to, internT* to_end, internT*& to_next) const;
17
18#include <locale>
19#include <string>
20#include <vector>
21#include <cassert>
22
23typedef std::codecvt<wchar_t, char, std::mbstate_t> F;
24
25int main()
26{
27 std::locale l = std::locale::classic();
28 const std::basic_string<F::extern_type> from("some text");
29 const std::basic_string<F::intern_type> expected(from.begin(), from.end());
30 std::basic_string<F::intern_type> to(from.size(), F::intern_type());
31 const F& f = std::use_facet<F>(l);
Dan Albert1d4a1ed2016-05-25 22:36:09 -070032 std::mbstate_t mbs = {0};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000033 const F::extern_type* from_next = 0;
34 F::intern_type* to_next = 0;
35 F::result r = f.in(mbs, from.data(), from.data() + from.size(), from_next,
36 &to[0], &to[0] + to.size(), to_next);
37 assert(r == F::ok);
38 assert(from_next - from.data() == from.size());
39 assert(to_next - to.data() == expected.size());
40 assert(to_next - to.data() == expected.size());
41 assert(to == expected);
42}