2010-08-10 00:39:43 +02:00
|
|
|
#ifndef LINE_BUFFER_H_
|
|
|
|
#define LINE_BUFFER_H_
|
|
|
|
|
2010-10-11 04:39:21 +02:00
|
|
|
#include "strbuf.h"
|
|
|
|
|
|
|
|
#define LINE_BUFFER_LEN 10000
|
|
|
|
|
|
|
|
struct line_buffer {
|
|
|
|
char line_buffer[LINE_BUFFER_LEN];
|
|
|
|
struct strbuf blob_buffer;
|
|
|
|
FILE *infile;
|
|
|
|
};
|
|
|
|
#define LINE_BUFFER_INIT {"", STRBUF_INIT, NULL}
|
|
|
|
|
2010-10-11 04:41:06 +02:00
|
|
|
int buffer_init(struct line_buffer *buf, const char *filename);
|
|
|
|
int buffer_deinit(struct line_buffer *buf);
|
|
|
|
char *buffer_read_line(struct line_buffer *buf);
|
|
|
|
char *buffer_read_string(struct line_buffer *buf, uint32_t len);
|
2011-01-03 04:05:46 +01:00
|
|
|
void buffer_read_binary(struct line_buffer *buf, struct strbuf *sb, uint32_t len);
|
2010-10-11 04:41:06 +02:00
|
|
|
void buffer_copy_bytes(struct line_buffer *buf, uint32_t len);
|
|
|
|
void buffer_skip_bytes(struct line_buffer *buf, uint32_t len);
|
|
|
|
void buffer_reset(struct line_buffer *buf);
|
2010-08-10 00:39:43 +02:00
|
|
|
|
|
|
|
#endif
|