//===----------------------------------------------------------------------===// // // 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 char* tolower(char* low, const char* 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::string in(" A\x07.a1"); assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); assert(in[0] == ' '); assert(in[1] == 'a'); assert(in[2] == '\x07'); assert(in[3] == '.'); assert(in[4] == 'a'); assert(in[5] == '1'); } }