Index: ossp-pkg/cfg/cfg_buf.c RCS File: /v/ossp/cvs/ossp-pkg/cfg/cfg_buf.c,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/cfg/cfg_buf.c,v' 2>/dev/null --- 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) Index: ossp-pkg/cfg/cfg_buf.h RCS File: /v/ossp/cvs/ossp-pkg/cfg/cfg_buf.h,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/cfg/cfg_buf.h,v' 2>/dev/null --- cfg_buf.h 2002/07/05 17:15:14 1.3 +++ cfg_buf.h 2002/07/17 14:55:00 1.4 @@ -36,12 +36,6 @@ struct cfg_buf_st; typedef struct cfg_buf_st cfg_buf_t; -struct cfg_buf_st { - char *buf_ptr; - size_t buf_size; - size_t buf_len; -}; - extern cfg_rc_t cfg_buf_create (cfg_buf_t **buf); extern cfg_rc_t cfg_buf_resize (cfg_buf_t *buf, signed int n); extern cfg_rc_t cfg_buf_format (cfg_buf_t *buf, const char *fmt, ...);