| 60 | } |
| 61 | |
| 62 | char * |
| 63 | TextBuffer::release() |
| 64 | { |
| 65 | char *ret = bufferStart; |
| 66 | |
| 67 | bufferStart = nextAdd = nullptr; |
| 68 | currentSize = spaceLeft = 0; |
| 69 | |
| 70 | return ret; |
| 71 | } |
| 72 | |
| 73 | // void TextBuffer::reUse() |
| 74 | // |
no outgoing calls
no test coverage detected