Merge commit 'cfb92518908a98e1e04cf559d44a454fa3f9527b'

This commit is contained in:
2020-06-22 19:23:10 +02:00
2 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#ifndef array_h
#define array_h
void* acl_arraylist_create(size_t array_size, size_t sizeof_one_element);
void* acl_arraylist_append(void *arraylist_void, void *element_void);
#endif