| 337 | } |
| 338 | |
| 339 | void PDFWriteTextString(const std::shared_ptr<WriteStream>& stream, const std::string& text) { |
| 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); |
no test coverage detected