| 41 | } |
| 42 | |
| 43 | void BufferFormatPrintTarget::DoWriteString(const char* str, int size) |
| 44 | { |
| 45 | int n = WritableSize(size); |
| 46 | memcpy(m_buffer + m_pos, str, n); |
| 47 | m_pos += n; |
| 48 | } |
| 49 | |
| 50 | } // namespace toft |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected