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