/usr/include/xsd/cxx/xml/char-lcp.txx is in xsdcxx 3.3.0.1-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | // file : xsd/cxx/xml/char-lcp.txx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
#include <cstring> // std::memcpy
#include <xercesc/util/XMLString.hpp>
#include <xsd/cxx/auto-array.hxx>
#include <xsd/cxx/xml/std-memory-manager.hxx>
namespace xsd
{
namespace cxx
{
namespace xml
{
template <typename C>
std::basic_string<C> char_lcp_transcoder<C>::
to (const XMLCh* s)
{
std_memory_manager mm;
auto_array<C, std_memory_manager> r (
xercesc::XMLString::transcode (s, &mm), mm);
return std::basic_string<C> (r.get ());
}
template <typename C>
std::basic_string<C> char_lcp_transcoder<C>::
to (const XMLCh* s, std::size_t len)
{
auto_array<XMLCh> tmp (new XMLCh[len + 1]);
std::memcpy (tmp.get (), s, len * sizeof (XMLCh));
tmp[len] = XMLCh (0);
std_memory_manager mm;
auto_array<C, std_memory_manager> r (
xercesc::XMLString::transcode (tmp.get (), &mm), mm);
tmp.reset ();
return std::basic_string<C> (r.get ());
}
template <typename C>
XMLCh* char_lcp_transcoder<C>::
from (const C* s)
{
std_memory_manager mm;
return xercesc::XMLString::transcode (s, &mm);
}
}
}
}
|