summary refs log tree commit diff
path: root/doc.h
diff options
context:
space:
mode:
authorwrmr2024-11-09 02:04:33 -0500
committerwrmr2024-11-09 02:04:33 -0500
commit38987f3f5a3919ac81ba419e05ac8610c269faff (patch)
treedc76c691f0e7d8385224ede708b9390b50b68dff /doc.h
parent12d5d0df5c4b958bbb5cc339a9e556c50136a974 (diff)
rename buf_t to str_t, and consolidate str.c/h with strv.c/h
Diffstat (limited to 'doc.h')
-rw-r--r--doc.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc.h b/doc.h
index 2a9fe58..5df443e 100644
--- a/doc.h
+++ b/doc.h
@@ -1,8 +1,7 @@
 #ifndef DOC_H
 #define DOC_H
 
-#include "buf.h"
-#include "strv.h"
+#include "str.h"
 
 #define DOC_LINK_NONE 0xffff
 
@@ -19,7 +18,7 @@ enum doc_type {
 };
 
 struct doc {
-	buf_t txt, lnk;
+	str_t txt, lnk;
 	size_t latest;
 	unsigned short linkc;
 };