aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcathook <cat.hook31894@gmail.com>2013-11-26 00:40:56 +0800
committercathook <cat.hook31894@gmail.com>2013-11-26 00:50:24 +0800
commitbb8dc7893a545a90001a8abd0fed9121451f9649 (patch)
treee215b027ef720f323fcbcd8991e924c29c124f59
parent098a60d975c461527032801e34e76b9868c3deae (diff)
downloadctl-bb8dc7893a545a90001a8abd0fed9121451f9649.tar.gz
ctl-bb8dc7893a545a90001a8abd0fed9121451f9649.tar.zst
ctl-bb8dc7893a545a90001a8abd0fed9121451f9649.zip
test...
-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;