summaryrefslogtreecommitdiff
path: root/lib/mystring/fdobuf.cc
blob: ff967e6b61682be9abcaeaf7f02f5995ad478096 (plain)
1
2
3
4
5
6
7
8
9
#include "mystring.h"
#include "fdbuf/fdbuf.h"

fdobuf& operator<<(fdobuf& out, const mystring& str)
{
  out.write(str.c_str(), str.length());
  return out;
}