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;
|
2012-05-22 11:05:07 +00:00
|
|
|
size_t size = 0;
|
2013-08-15 11:34:38 +00:00
|
|
|
size_t linelen;
|
2012-05-22 11:05:07 +00:00
|
|
|
|
|
|
|
while(afgets(&line, &size, fp)) {
|
2013-03-05 20:46:48 +00:00
|
|
|
if(++b->nlines > b->capacity) {
|
|
|
|
b->capacity += 512;
|
|
|
|
nline = realloc(b->lines, b->capacity * sizeof(*b->lines));
|
|
|
|
if(nline == NULL)
|
|
|
|
eprintf("realloc:");
|
|
|
|
b->lines = nline;
|
|
|
|
}
|
2013-08-15 11:34:38 +00:00
|
|
|
if(!(b->lines[b->nlines-1] = malloc((linelen = strlen(line)+1))))
|
2012-05-22 11:05:07 +00:00
|
|
|
eprintf("malloc:");
|
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);
|
|
|
|
}
|
2013-03-05 20:46:48 +00:00
|
|
|
|