2011-05-25 15:40:47 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
2016-03-06 20:04:29 -05:00
|
|
|
struct line {
|
2016-02-28 18:45:53 -05:00
|
|
|
char *data;
|
|
|
|
size_t len;
|
|
|
|
};
|
|
|
|
|
2012-05-21 17:09:38 -04:00
|
|
|
struct linebuf {
|
2016-03-06 20:04:29 -05:00
|
|
|
struct line *lines;
|
2015-01-31 14:57:29 -05:00
|
|
|
size_t nlines;
|
|
|
|
size_t capacity;
|
2012-05-21 17:09:38 -04:00
|
|
|
};
|
|
|
|
#define EMPTY_LINEBUF {NULL, 0, 0,}
|
|
|
|
void getlines(FILE *, struct linebuf *);
|
|
|
|
|
2016-03-06 20:04:29 -05:00
|
|
|
int linecmp(struct line *, struct line *);
|