sbase/text.h

12 lines
263 B
C
Raw Normal View History

2011-05-25 15:40:47 -04:00
/* See LICENSE file for copyright and license details. */
2012-05-21 17:09:38 -04:00
struct linebuf {
char **lines;
size_t nlines;
size_t capacity;
2012-05-21 17:09:38 -04:00
};
#define EMPTY_LINEBUF {NULL, 0, 0,}
void getlines(FILE *, struct linebuf *);
2011-05-26 13:18:42 -04:00
void concat(FILE *, const char *, FILE *, const char *);