1 #include "mystring.h"
2 #include "fdbuf/fdbuf.h"
3
4 fdobuf& operator<<(fdobuf& out, const mystring& str)
5 {
6 out.write(str.c_str(), str.length());
7 return out;
8 }
9