/* $Id: obuf_putsflush.c 616 2005-08-19 20:11:01Z bruce $ */ #include #include "obuf.h" /** Write a C string to the \c obuf and flush it. */ int obuf_putsflush(obuf* out, const char* str) { return obuf_puts(out, str) && obuf_flush(out); }