ostream-buffer.c revision e59faf65ce864fe95dc00f5d52b8323cdbd0608a
/* Copyright (c) 2002-2010 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "buffer.h"
#include "ostream-internal.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;
}