lib/mystring/fdobuf.cc
changeset 0 6f7a81934006
equal deleted inserted replaced
-1:000000000000 0:6f7a81934006
       
     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