diff options
| author | J08nY | 2017-10-17 21:45:04 +0200 |
|---|---|---|
| committer | J08nY | 2017-10-17 21:45:04 +0200 |
| commit | b09586f3cca80ec3409c4e34a2fae22974c43d56 (patch) | |
| tree | d804f9884c4b2891d77c816af8c428c01a63ab43 /src/util/str.h | |
| parent | 3b573a6a432af1909224ff003cfcaadbc5d84308 (diff) | |
| download | ecgen-b09586f3cca80ec3409c4e34a2fae22974c43d56.tar.gz ecgen-b09586f3cca80ec3409c4e34a2fae22974c43d56.tar.zst ecgen-b09586f3cca80ec3409c4e34a2fae22974c43d56.zip | |
Diffstat (limited to 'src/util/str.h')
| -rw-r--r-- | src/util/str.h | 21 |
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 |
