| 20 | |
| 21 | template <size_t N> |
| 22 | inline void StrCopy(char(&dst)[N], const char *src) |
| 23 | { |
| 24 | strncpy(dst, src, N - 1); |
| 25 | StrTerminate(dst); |
| 26 | }; |
| 27 | |
| 28 | template <size_t N> |
| 29 | inline void StrCopy(char(&dst)[N], const std::string &src) |
nothing calls this directly
no test coverage detected