示例#1
0
文件: Facets.cpp 项目: 3Nigma/frayon
const Pt::Char*
ctype<Pt::Char>::do_toupper(Pt::Char* begin, const Pt::Char* end) const
{
    for(; begin < end; ++begin)
    {
        *begin = do_toupper(*begin);
    }

    return end;
}
示例#2
0
const cxxtools::Char*
ctype<cxxtools::Char>::do_toupper(cxxtools::Char* begin, const cxxtools::Char* end) const
{
    for(; begin < end; ++begin)
    {
        *begin = do_toupper(*begin);
    }

    return end;
}
示例#3
0
 virtual const Ch* do_toupper(Ch* b, const Ch* e) const
 {
   for(; b!=e; ++b)
     *b = do_toupper(*b);
   return e;
 }