aboutsummaryrefslogtreecommitdiff
path: root/src/util/str.h
diff options
context:
space:
mode:
authorJ08nY2017-10-17 21:45:04 +0200
committerJ08nY2017-10-17 21:45:04 +0200
commitb09586f3cca80ec3409c4e34a2fae22974c43d56 (patch)
treed804f9884c4b2891d77c816af8c428c01a63ab43 /src/util/str.h
parent3b573a6a432af1909224ff003cfcaadbc5d84308 (diff)
downloadecgen-b09586f3cca80ec3409c4e34a2fae22974c43d56.tar.gz
ecgen-b09586f3cca80ec3409c4e34a2fae22974c43d56.tar.zst
ecgen-b09586f3cca80ec3409c4e34a2fae22974c43d56.zip
Diffstat (limited to 'src/util/str.h')
-rw-r--r--src/util/str.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/util/str.h b/src/util/str.h
new file mode 100644
index 0000000..2e14272
--- /dev/null
+++ b/src/util/str.h
@@ -0,0 +1,21 @@
+/*
+ * ecgen, tool for generating Elliptic curve domain parameters
+ * Copyright (C) 2017 J08nY
+ */
+/**
+ * @file str.h
+ */
+#ifndef ECGEN_STR_H
+#define ECGEN_STR_H
+
+#include <stddef.h>
+
+/**
+ * @brief
+ * @param strings
+ * @param len
+ * @return
+ */
+char *str_join(char *strings[], size_t len);
+
+#endif // ECGEN_STR_H