Added functionality to retrieve element from a list with the index

This commit is contained in:
kdeng00
2019-07-25 21:12:28 -04:00
parent fed1c1a091
commit 93d516c2d9
2 changed files with 25 additions and 2 deletions
+2
View File
@@ -2,6 +2,8 @@
struct node* init_list(void*, size_t);
void* list_element_at(struct node*, int);
int is_list_init(struct node**);
int list_size(struct node**);