summaryrefslogtreecommitdiff
path: root/dependencies/uthash/tests/test67.c
blob: 6602c7b59816576f429b394b7692172269ee45fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <stdio.h>
#include "utarray.h"

int main()
{
    UT_array *nums;
    int i, *p;

    utarray_new(nums,&ut_int_icd);
    for(i=0; i < 10; i++) {
        utarray_push_back(nums,&i);
    }

    for(p=(int*)utarray_back(nums);
            p!=NULL;
            p=(int*)utarray_prev(nums,p)) {
        printf("%d\n",*p);
    }

    /* the other form of iteration starting from NULL (back) */
    p=NULL;
    while ( (p=(int*)utarray_prev(nums,p)) != NULL ) {
        printf("%d\n",*p);
    }


    utarray_free(nums);

    return 0;
}