/* $Id: obuf_put3s.c 616 2005-08-19 20:11:01Z bruce $ */ #include #include "obuf.h" /** Write 3 C strings to the \c obuf */ int obuf_put3s(obuf* out, const char* s1, const char* s2, const char* s3) { if (s1 && !obuf_puts(out, s1)) return 0; if (s2 && !obuf_puts(out, s2)) return 0; if (s3 && !obuf_puts(out, s3)) return 0; return 1; } #ifdef SELFTEST_MAIN #include "selftest.c" MAIN { obuf_put3s(&outbuf, "1", "2", "3"); NL(); obuf_put3s(&outbuf, 0, "2", "3"); NL(); obuf_put3s(&outbuf, "1", 0, "3"); NL(); obuf_put3s(&outbuf, "1", "2", 0); NL(); } #endif #ifdef SELFTEST_EXP 123 23 13 12 #endif