|
Check-in Number:
|
2304 | |
| Date: |
2002-Jul-17 16:54:59 (local)
2002-Jul-17 14:54:59 (UTC) |
| User: | rse |
| Branch: | |
| Comment: |
cfg_buf_t is an opaque type |
| Tickets: |
|
| Inspections: |
|
| Files: |
|
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)
|
|
ossp-pkg/cfg/cfg_buf.h 1.3 -> 1.4
--- 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, ...);
|
|