summaryrefslogtreecommitdiff
path: root/src/libenvexec/env_make.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libenvexec/env_make.c')
-rw-r--r--src/libenvexec/env_make.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libenvexec/env_make.c b/src/libenvexec/env_make.c
new file mode 100644
index 0000000..60148f8
--- /dev/null
+++ b/src/libenvexec/env_make.c
@@ -0,0 +1,16 @@
+/* ISC license. */
+
+#include <string.h>
+#include <errno.h>
+#include <skalibs/env.h>
+
+int env_make (char const **v, size_t argc, char const *s, size_t len)
+{
+ while (argc--)
+ {
+ size_t n = strlen(s) + 1 ;
+ if (n > len) return (errno = EINVAL, 0) ;
+ *v++ = s ; s += n ; len -= n ;
+ }
+ return 1 ;
+}