| 17 | constexpr char VolumeSeparatorChar = ':'; |
| 18 | |
| 19 | int32 StringUtils::Copy(char* dst, const Char* src, int32 count) |
| 20 | { |
| 21 | int32 i = 0; |
| 22 | while (i < count && src[i]) |
| 23 | { |
| 24 | dst[i] = (char)src[i]; |
| 25 | i++; |
| 26 | } |
| 27 | dst[i] = 0; |
| 28 | return i; |
| 29 | } |
| 30 | |
| 31 | int32 StringUtils::Copy(Char* dst, const char* src, int32 count) |
| 32 | { |
no outgoing calls
no test coverage detected