13 alloc_2048_buffer buf;
14 alloc_2048 alloc = alloc_2048_new(&buf);
15 vec_char vec = vec_char_new(&alloc);
17 for (
char x = 1; x <= 9; x++) {
18 vec_char_push(&vec, (
char)(
'0' + x));
21 vec_char_iter_const iter = vec_char_get_iter_const(&vec);
23 while ((entry = vec_char_iter_const_next(&iter))) {
24 printf(
"entry: %c\n", *entry);
27 vec_char_delete(&vec);