| 35 | } |
| 36 | |
| 37 | int CLoopBuffer::Write(const char* str, int len) { |
| 38 | if (str == nullptr) { |
| 39 | return 0; |
| 40 | } |
| 41 | return _Write(str, len, true); |
| 42 | } |
| 43 | |
| 44 | int CLoopBuffer::Clear(int len) { |
| 45 | if (len == 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected