feat: add day 5

This commit is contained in:
2023-12-08 17:10:54 +01:00
parent 2fe7b6a4d6
commit cd316d54f9
4 changed files with 411 additions and 14 deletions

7
list.h
View File

@@ -56,3 +56,10 @@ static __inline void LIST_FN(free)(LIST_NAME *alist) {
free(alist->data);
free(alist);
}
#undef LIST_NAME
#undef LIST_PREFIX
#undef ELEMENT_TYPE
#undef LIST_CONCAT
#undef LIST_CONCAT1
#undef LIST_FN