blob: 396002fbfa91474fd02bfb291acdd72fa712918f [file] [log] [blame]
#ifndef FIO_OUTPUT_BUFFER_H
#define FIO_OUTPUT_BUFFER_H
#include <unistd.h>
struct buf_output {
char *buf;
size_t buflen;
size_t max_buflen;
};
void buf_output_init(struct buf_output *out);
void buf_output_free(struct buf_output *out);
size_t buf_output_add(struct buf_output *out, const char *buf, size_t len);
size_t buf_output_flush(struct buf_output *out);
#endif