blob: c0139f50ac8be58aea80df2984923415e4c548b6 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <locale>
// template <> class codecvt<char32_t, char, mbstate_t>
// int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
#include <locale>
#include <cassert>
#include "test_macros.h"
typedef std::codecvt<char32_t, char, std::mbstate_t> F;
int main(int, char**)
{
std::locale l = std::locale::classic();
const F& f = std::use_facet<F>(l);
std::mbstate_t mbs = {};
const char from[] = "some text";
assert(f.length(mbs, from, from+10, 0) == 0);
assert(f.length(mbs, from, from+10, 8) == 8);
assert(f.length(mbs, from, from+10, 9) == 9);
assert(f.length(mbs, from, from+10, 10) == 10);
assert(f.length(mbs, from, from+10, 100) == 10);
return 0;
}