From ad3b0fdc7423144bf9c4d5b182e7510a04756c82 Mon Sep 17 00:00:00 2001 From: cathook Date: Tue, 26 Nov 2013 00:40:56 +0800 Subject: test... --- test/test.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- cgit