Name
ap_bvputs — write several NUL-terminated strings to a stream
Synopsis
int ap_bvputs(BUFF *fb,...)
Writes the contents of a list of buffers in the same manner as
ap_bputs()
. The list of buffers is terminated
with a NULL
. Returns the total number of bytes
written or -1
on an error. For example:
if(ap_bvputs(fb,buf1,buf2,buf3,NULL) < 0)
...