Style inquistion for util and some tools.
This commit is contained in:
@@ -2,21 +2,28 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "../text.h"
|
||||
#include "../util.h"
|
||||
|
||||
void
|
||||
getlines(FILE *fp, struct linebuf *b)
|
||||
{
|
||||
char *line = NULL;
|
||||
char *line = NULL, **nline;
|
||||
size_t size = 0;
|
||||
|
||||
while(afgets(&line, &size, fp)) {
|
||||
if(++b->nlines > b->capacity && !(b->lines = realloc(b->lines, (b->capacity+=512) * sizeof *b->lines)))
|
||||
eprintf("realloc:");
|
||||
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;
|
||||
}
|
||||
if(!(b->lines[b->nlines-1] = malloc(strlen(line)+1)))
|
||||
eprintf("malloc:");
|
||||
strcpy(b->lines[b->nlines-1], line);
|
||||
}
|
||||
free(line);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user