A clone of btpd with my configuration changes.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

16 lines
358 B

  1. #ifndef BTPD_IOBUF_H
  2. #define BTPD_IOBUF_H
  3. struct io_buffer {
  4. size_t buf_off;
  5. size_t buf_len;
  6. char *buf;
  7. };
  8. int buf_init(struct io_buffer *iob, size_t size);
  9. int buf_grow(struct io_buffer *iob, size_t size);
  10. int buf_write(struct io_buffer *iob, const void *data, size_t size);
  11. int buf_print(struct io_buffer *iob, const char *fmt, ...);
  12. #endif