vcs-svn / line_buffer.hon commit fetch-pack: Finish negotation if remote replies "ACK %s ready" (f2cba92)
   1#ifndef LINE_BUFFER_H_
   2#define LINE_BUFFER_H_
   3
   4int buffer_init(const char *filename);
   5int buffer_deinit(void);
   6char *buffer_read_line(void);
   7char *buffer_read_string(uint32_t len);
   8void buffer_copy_bytes(uint32_t len);
   9void buffer_skip_bytes(uint32_t len);
  10void buffer_reset(void);
  11
  12#endif