| 28 | */ |
| 29 | template <typename Ch> |
| 30 | inline SizeType StrLen(const Ch* s) { |
| 31 | const Ch* p = s; |
| 32 | while (*p) ++p; |
| 33 | return SizeType(p - s); |
| 34 | } |
| 35 | |
| 36 | //! Returns number of code points in a encoded string. |
| 37 | template<typename Encoding> |
no outgoing calls
no test coverage detected