4 void dump(UT_vector
*v
) {
5 printf("len: %d\n", utvector_len(v
));
7 while ( (p
=(UT_string
*)utvector_next(v
,p
))) printf("%s\n",utstring_body(p
));
12 UT_vector v
; utvector_init(&v
, utstring_mm
);
15 UT_string s
; utstring_init(&s
);
17 utstring_printf(&s
, ".");
18 utvector_push(&v
, &s
);
23 k
= utvector_clone(&v
);