aboutsummaryrefslogtreecommitdiff
path: root/sys/base/string/join.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/string/join.c')
-rw-r--r--sys/base/string/join.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/sys/base/string/join.c b/sys/base/string/join.c
deleted file mode 100644
index fb97b6c..0000000
--- a/sys/base/string/join.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "internal.h"
-
-string
-str·join(vlong len, byte** fields, const byte* sep)
-{
- string s = str·makecap("", 0, 10);
- int j = 0;
-
- for (j = 0; j < len; j++) {
- str·append(&s, fields[j]);
- if (j < len - 1)
- str·appendlen(&s, 1, sep);
- }
-
- return s;
-}