ostream-buffer.c revision 9a755930537f13e9746c4fc8c1bc42a83e52275e
/* Copyright (c) 2002-2012 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "buffer.h"
#include "ostream-private.h"
struct buffer_ostream {
struct ostream_private ostream;
};
{
return 1;
}
static int
{
return 0;
}
static ssize_t
{
unsigned int i;
for (i = 0; i < iov_count; i++) {
ret += n;
break;
}
return ret;
}
{
struct buffer_ostream *bstream;
return output;
}