2012-05-22 07:05:07 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2012-05-22 07:05:07 -04:00
|
|
|
#include "../text.h"
|
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
getlines(FILE *fp, struct linebuf *b)
|
|
|
|
{
|
2013-03-05 15:46:48 -05:00
|
|
|
char *line = NULL, **nline;
|
2014-06-01 09:04:32 -04:00
|
|
|
size_t size = 0, linelen;
|
|
|
|
ssize_t len;
|
2012-05-22 07:05:07 -04:00
|
|
|
|
2014-11-13 13:54:28 -05:00
|
|
|
while ((len = agetline(&line, &size, fp)) != -1) {
|
|
|
|
if (++b->nlines > b->capacity) {
|
2013-03-05 15:46:48 -05:00
|
|
|
b->capacity += 512;
|
2014-11-16 05:07:26 -05:00
|
|
|
nline = erealloc(b->lines, b->capacity * sizeof(*b->lines));
|
2013-03-05 15:46:48 -05:00
|
|
|
b->lines = nline;
|
|
|
|
}
|
2014-06-01 09:04:32 -04:00
|
|
|
linelen = len + 1;
|
2014-11-16 05:07:26 -05:00
|
|
|
b->lines[b->nlines-1] = emalloc(linelen);
|
2013-08-15 07:34:38 -04:00
|
|
|
memcpy(b->lines[b->nlines-1], line, linelen);
|
2012-05-22 07:05:07 -04:00
|
|
|
}
|
|
|
|
free(line);
|
|
|
|
}
|