//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // // 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 #include "test_macros.h" typedef std::codecvt F; int main(int, char**) { std::locale l = std::locale::classic(); const char from[] = "some text"; F::intern_type to[9]; const F& f = std::use_facet(l); std::mbstate_t mbs = {}; const char* from_next = 0; F::intern_type* to_next = 0; assert(f.in(mbs, from, from + 9, from_next, to, to + 9, to_next) == F::ok); assert(from_next - from == 9); assert(to_next - to == 9); for (unsigned i = 0; i < 9; ++i) assert(to[i] == static_cast(from[i])); return 0; }