ossp-pkg/cfg/cfg_buf.c 1.3 -> 1.4
--- cfg_buf.c 2002/07/05 17:15:14 1.3
+++ cfg_buf.c 2002/07/17 14:54:59 1.4
@@ -36,6 +36,12 @@
#include "cfg_buf.h"
#include "cfg_fmt.h"
+struct cfg_buf_st {
+ char *buf_ptr;
+ size_t buf_size;
+ size_t buf_len;
+};
+
cfg_rc_t cfg_buf_create(cfg_buf_t **buf)
{
if (buf == NULL)
|
|