///////////////////////////////////////////////////////
| 77 | |
| 78 | //////////////////////////////////////////////////////////// |
| 79 | U8StringCharTraits::char_type* U8StringCharTraits::copy(char_type* s1, const char_type* s2, std::size_t n) |
| 80 | { |
| 81 | std::memcpy(s1, s2, n); |
| 82 | return s1; |
| 83 | } |
| 84 | |
| 85 | |
| 86 | //////////////////////////////////////////////////////////// |