summaryrefslogtreecommitdiffstats
path: root/args.c
diff options
context:
space:
mode:
Diffstat (limited to 'args.c')
-rw-r--r--args.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/args.c b/args.c
index d9a442e3..9e0a6b24 100644
--- a/args.c
+++ b/args.c
@@ -87,6 +87,15 @@ struct args *args_copy_zap(struct args *to, struct args *from)
return to;
}
+struct args *args_cat_zap(struct args *to, struct args *from)
+{
+ to->list = from->list;
+ memcpy(to->arg + to->fill, from->arg, sizeof *from->arg * from->fill);
+ to->fill += from->fill;
+ memset(from->arg, 0, sizeof *to->arg * to->fill);
+ return to;
+}
+
val args_copy_to_list(struct args *args)
{
list_collect_decl (out, ptail);