예제 #1
0
파일: Facets.cpp 프로젝트: 3Nigma/frayon
const Pt::Char*
ctype<Pt::Char>::do_tolower(Pt::Char* begin, const Pt::Char* end) const
{
    for(; begin < end; ++begin) {
        *begin = do_tolower(*begin);
    }

    return end;
}
예제 #2
0
const cxxtools::Char*
ctype<cxxtools::Char>::do_tolower(cxxtools::Char* begin, const cxxtools::Char* end) const
{
    for(; begin < end; ++begin) {
        *begin = do_tolower(*begin);
    }

    return end;
}
예제 #3
0
 virtual const Ch* do_tolower(Ch* b, const Ch* e) const
 {
   for(; b!=e; ++b)
     *b = do_tolower(*b);
   return e;
 }