diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-12-01 13:33:34 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-12-01 13:33:34 +0100 |
commit | c8bf38e5fb717d40635a2a89b22ed71b0de4266b (patch) | |
tree | 63751b2f5497c6f99e1c6a78f23a8e6e5c49833f /tests/test45.c |
Squashed 'dependencies/uthash/' content from commit 8e67ced
git-subtree-dir: dependencies/uthash
git-subtree-split: 8e67ced1d1c5bd8141c542a22630e6de78aa6b90
Diffstat (limited to 'tests/test45.c')
-rw-r--r-- | tests/test45.c | 36 |
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; +} + |