summaryrefslogtreecommitdiff
path: root/extern/concat.h
diff options
context:
space:
mode:
Diffstat (limited to 'extern/concat.h')
-rw-r--r--extern/concat.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/extern/concat.h b/extern/concat.h
new file mode 100644
index 0000000..7f2ea46
--- /dev/null
+++ b/extern/concat.h
@@ -0,0 +1,19 @@
+/*
+ * Thanks to lloyd for contribution
+ */
+
+extern char concat[8192];
+
+extern void
+ccat(const unsigned short int count, ...)
+{
+ va_list ap;
+ unsigned short int i;
+ concat[0] = '\0';
+
+ va_start(ap, count);
+ for(i = 0; i < count; i++)
+ strlcat(concat, va_arg(ap, char *), sizeof(concat));
+ va_end(ap);
+ return;
+}