//===----------------------------------------------------------------------===// // // 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 ctype; // const charT* toupper(charT* low, const charT* high) const; #include #include #include int main() { std::locale l = std::locale::classic(); { typedef std::ctype F; const F& f = std::use_facet(l); std::wstring in(L" A\x07.a1"); assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); assert(in[0] == L' '); assert(in[1] == L'A'); assert(in[2] == L'\x07'); assert(in[3] == L'.'); assert(in[4] == L'A'); assert(in[5] == L'1'); } }