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