| 590 | |
| 591 | |
| 592 | inline bool pure_slice::toCString(char *str, size_t bufSize) const noexcept { |
| 593 | size_t n = std::min(size, bufSize-1); |
| 594 | FLMemCpy(str, buf, n); |
| 595 | str[n] = 0; |
| 596 | return n == size; |
| 597 | } |
| 598 | |
| 599 | |
| 600 | inline std::string pure_slice::hexString() const { |
nothing calls this directly
no test coverage detected