aboutsummaryrefslogtreecommitdiff
path: root/tests/test45.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test45.c')
-rw-r--r--tests/test45.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/test45.c b/tests/test45.c
new file mode 100644
index 000000000..b0633f2b4
--- /dev/null
+++ b/tests/test45.c
@@ -0,0 +1,36 @@
+#include <stdio.h>
+#include "utarray.h"
+
+int main()
+{
+ UT_array *a;
+ int i, *p=NULL;
+ utarray_new(a, &ut_int_icd);
+ for(i=0; i<10; i++) {
+ utarray_push_back(a,&i);
+ }
+ utarray_pop_back(a);
+ utarray_erase(a,0,1);
+ while ( (p=(int*)utarray_next(a,p)) != NULL ) {
+ printf("%d ",*p);
+ }
+ printf("\n");
+ i = 100;
+ utarray_insert(a,&i,3);
+ while ( (p=(int*)utarray_next(a,p)) != NULL ) {
+ printf("%d ",*p);
+ }
+ printf("\n");
+ utarray_extend_back(a);
+ p = (int*)utarray_back(a);
+ *p = 1000;
+ p = NULL;
+ while ( (p=(int*)utarray_next(a,p)) != NULL ) {
+ printf("%d ",*p);
+ }
+ printf("\n");
+ utarray_clear(a);
+ utarray_free(a);
+ return 0;
+}
+