ostream-buffer.c revision 8b247780e911909a9fdc47f69ce6d1478902ad98
/* 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;
}