#include "dyn_arr.h" #include #include void *ty_list_create(void) { struct ty_list_header *header = ty_alloc(sizeof(struct ty_list_header)); header->cap = 0; header->len = 0; return (void*)(header + 1); }