addtition: Added function declarations

This commit is contained in:
2026-04-19 21:57:28 -06:00
parent 4b2389ad62
commit 04a52e3455
2 changed files with 24 additions and 2 deletions

View File

@@ -9,9 +9,10 @@ struct ArrayList{
size_t capacity;
size_t len;
size_t elem_size;
size_t borrows;
};
struct ArrayListSlice {
struct ArraySlice {
ArrayList *arr;
size_t start;
size_t end;