private.h 226 B

123456789101112131415
  1. #ifndef _konf_buf_private_h
  2. #define _konf_buf_private_h
  3. #include "konf/buf.h"
  4. struct konf_buf_s {
  5. int fd;
  6. int size;
  7. char *buf;
  8. int pos;
  9. int rpos;
  10. void *data; /* Optional pointer to arbitrary related data */
  11. };
  12. #endif