| 340 | WriteTextString(stream, text.data(), text.size()); |
| 341 | } |
| 342 | void PDFWriteByteString(const std::shared_ptr<WriteStream>& stream, const char* bytes, |
| 343 | size_t length) { |
| 344 | WriteTextString(stream, bytes, length); |
| 345 | } |
| 346 | |
| 347 | } // namespace tgfx |
nothing calls this directly
no test coverage detected