| 124 | static size_t length(const char_type* s) { return c16len(s); } |
| 125 | |
| 126 | static const char_type* find(const char_type* s, |
| 127 | size_t n, |
| 128 | const char_type& a) { |
| 129 | return c16memchr(s, a, n); |
| 130 | } |
| 131 | |
| 132 | static char_type* move(char_type* s1, const char_type* s2, int_type n) { |
| 133 | return c16memmove(s1, s2, n); |
no outgoing calls
no test coverage detected