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)
|
|
|
|
{
|
2015-03-29 19:48:49 +00:00
|
|
|
char *line = NULL;
|
2015-05-08 15:10:39 +00:00
|
|
|
size_t size = 0, linelen = 0;
|
2014-06-01 13:04:32 +00:00
|
|
|
ssize_t len;
|
2012-05-22 11:05:07 +00:00
|
|
|
|
2015-03-27 13:49:48 +00:00
|
|
|
while ((len = getline(&line, &size, fp)) > 0) {
|
2014-11-13 18:54:28 +00:00
|
|
|
if (++b->nlines > b->capacity) {
|
2013-03-05 20:46:48 +00:00
|
|
|
b->capacity += 512;
|
2019-12-31 21:39:08 +00:00
|
|
|
b->lines = ereallocarray(b->lines, b->capacity, sizeof(*b->lines));
|
2013-03-05 20:46:48 +00:00
|
|
|
}
|
2015-05-05 12:55:09 +00:00
|
|
|
linelen = len;
|
2016-02-28 23:45:53 +00:00
|
|
|
b->lines[b->nlines - 1].data = memcpy(emalloc(linelen + 1), line, linelen + 1);
|
|
|
|
b->lines[b->nlines - 1].len = linelen;
|
2012-05-22 11:05:07 +00:00
|
|
|
}
|
|
|
|
free(line);
|
2016-02-28 23:45:53 +00:00
|
|
|
if (b->lines && b->nlines && linelen && b->lines[b->nlines - 1].data[linelen - 1] != '\n') {
|
|
|
|
b->lines[b->nlines - 1].data = erealloc(b->lines[b->nlines - 1].data, linelen + 2);
|
|
|
|
b->lines[b->nlines - 1].data[linelen] = '\n';
|
|
|
|
b->lines[b->nlines - 1].data[linelen + 1] = '\0';
|
2016-02-29 14:45:16 +00:00
|
|
|
b->lines[b->nlines - 1].len++;
|
2015-02-10 23:30:05 +00:00
|
|
|
}
|
2012-05-22 11:05:07 +00:00
|
|
|
}
|