diff options
Diffstat (limited to 'doc.h')
-rw-r--r-- | doc.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ #define DOC_H #include "buf.h" +#include "strv.h" #define DOC_LINK_NONE 0xffff @@ -27,7 +28,7 @@ void doc_init(struct doc *); void doc_fini(struct doc *); void doc_new_line(struct doc *); -void doc_add_line(struct doc *, const char *); +void doc_add_line(struct doc *, strv_t); void doc_add_text(struct doc *, const char *); void doc_add_textn(struct doc *, const char *, size_t); |