1 #include "iobuf.h"
2 
obuf_endl(obuf * out)3 int obuf_endl(obuf* out)
4 {
5   return obuf_write(out, "\n", 1) && obuf_flush(out);
6 }
7