interpret/src/text.h
2022-12-26 23:31:08 -08:00

12 lines
254 B
C

#include <stddef.h>
#ifndef HAVE_CHAR_ARRAY
struct char_array { char *data; size_t size, capacity; };
#endif
struct text { struct char_array a; };
struct text text(void);
void text_(struct text *);
char *text_append_file(struct text *, const char *);