feat(utilities,basefiles): added remove function to List and BaseFileBuffer
This commit is contained in:
parent
967b79d9ba
commit
e3a2f43871
4 changed files with 38 additions and 0 deletions
|
|
@ -41,6 +41,7 @@ typedef List FileInfoBuffer;
|
|||
|
||||
List* list_new(size_t);
|
||||
int list_push(List*, void*);
|
||||
int list_remove(List*, const void*, int (*compare)(const void*, const void*));
|
||||
void list_free(List*);
|
||||
void* binary_search(const void*, const void*, size_t, size_t, int (*compare)(const void*, const void*));
|
||||
void* list_binary_search(List*, const void*, int (*compare)(const void*, const void*));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue