blob: 34ab2178327e7bea4173b26db849e299dae60296 [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<char16_t, char, mbstate_t>
13
14// int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
15
16#include <locale>
17#include <cassert>
18
19typedef std::codecvt<char16_t, char, std::mbstate_t> F;
20
21int main()
22{
23 std::locale l = std::locale::classic();
24 const F& f = std::use_facet<F>(l);
Dan Albert1d4a1ed2016-05-25 22:36:09 -070025 std::mbstate_t mbs = {0};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000026 const char from[] = "some text";
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from+10, 10) == 10);
31 assert(f.length(mbs, from, from+10, 100) == 10);
32}