vcs-svn / line_buffer.hon commit {cvs,svn}import: use the new 'git read-tree --empty' (1bb28d8)
   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