aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c
index ed51d1c..81dde9c 100644
--- a/test/test.c
+++ b/test/test.c
@@ -75,6 +75,10 @@ int main(){
printf("cat(&v2, &v1)\n");
printVector("v1", v1);
printVector("v2", v2);
+ ctl_vector_copy(&v2, &v1);
+ printf("copy(&v2, &v1)\n");
+ printVector("v1", v1);
+ printVector("v2", v2);
}
break;