aboutsummaryrefslogtreecommitdiff
path: root/strcon.h
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2022-04-24 17:54:01 +0200
committerHimbeerserverDE <himbeerserverde@gmail.com>2022-04-24 17:54:01 +0200
commit9e49fe912460f7dc94938a39616012aa774a85ce (patch)
tree8efb230aa0db47ca50342d82a9654040b36b74d2 /strcon.h
parentf3f329bd7ad540e0ae112106ad2946abff035230 (diff)
Add code
Diffstat (limited to 'strcon.h')
-rw-r--r--strcon.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/strcon.h b/strcon.h
new file mode 100644
index 0000000..9fd535a
--- /dev/null
+++ b/strcon.h
@@ -0,0 +1,11 @@
+#ifndef _STRCON_H_
+#define _STRCON_H_
+
+/*
+ * The functions below should only be called with string arguments.
+ * The last argument has to be NULL.
+ */
+char *strcon(char *dest, ...);
+char *astrcon(const char *src, ...);
+
+#endif