summary refs log tree commit diff
path: root/strv.h
diff options
context:
space:
mode:
authorwrmr2024-11-09 02:04:33 -0500
committerwrmr2024-11-09 02:04:33 -0500
commit38987f3f5a3919ac81ba419e05ac8610c269faff (patch)
treedc76c691f0e7d8385224ede708b9390b50b68dff /strv.h
parent12d5d0df5c4b958bbb5cc339a9e556c50136a974 (diff)
rename buf_t to str_t, and consolidate str.c/h with strv.c/h
Diffstat (limited to 'strv.h')
-rw-r--r--strv.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/strv.h b/strv.h
deleted file mode 100644
index 1718711..0000000
--- a/strv.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef STRV_H
-#define STRV_H
-
-#include <stddef.h>
-
-typedef struct {
-	const char *s;
-	size_t n;
-} strv_t;
-
-strv_t strv(const char *s);
-int strv_split(strv_t *src, int chr, strv_t *dest);
-
-#endif