1234567891011121314151617181920212223 |
- #ifndef _konf_buf_private_h
- #define _konf_buf_private_h
- #include "konf/buf.h"
- #include "lub/bintree.h"
- struct konf_buf_s {
- lub_bintree_node_t bt_node;
- int fd;
- int size;
- char *buf;
- int pos;
- int rpos;
- void *data;
- };
- #endif
|