strbuf.cpp 157 B

12345678
  1. #include "strbuf.h"
  2. #include <ostream>
  3. std::ostream& operator<<(std::ostream& os, TStringBuf buf) {
  4. os.write(buf.data(), buf.size());
  5. return os;
  6. }