added remove and free functions for arrays
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
#ifndef array_h
|
||||
#define array_h
|
||||
#include <stddef.h>
|
||||
void acl_arraylist_free(void *arraylist);
|
||||
void* acl_arraylist_remove(void *arraylist_void, size_t index);
|
||||
void* acl_arraylist_create(size_t array_size, size_t sizeof_one_element);
|
||||
void* acl_arraylist_append(void *arraylist_void, void *element_void);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user