13 alloc_2048 alloc = alloc_2048_new();
14 vec_char vec = vec_char_new(&alloc);
16 for (
char x = 1; x <= 9; x++) {
17 vec_char_push(&vec, (
char)(
'0' + x));
20 vec_char_iter_const iter = vec_char_get_iter_const(&vec);
22 while ((entry = vec_char_iter_const_next(&iter))) {
23 printf(
"entry: %c\n", *entry);
26 vec_char_delete(&vec);