log4c 1.2.4
buffer.h
Go to the documentation of this file.
1/* $Id$
2 *
3 * buffer.h
4 *
5 * See the COPYING file for the terms of usage and distribution.
6 */
7
8#ifndef __log4c_buffer_h
9#define __log4c_buffer_h
10
18#include <log4c/defs.h>
19#include <stddef.h>
20
21__LOG4C_BEGIN_DECLS
22
32typedef struct
33{
34 size_t buf_size;
35 size_t buf_maxsize;
36 char* buf_data;
37
39
40#define LOG4C_BUFFER_SIZE_DEFAULT 512
41
42
43__LOG4C_END_DECLS
44
45#endif
buffer object
Definition: buffer.h:33