Skip to content

Commit

Permalink
keyword conflict with zebos list_creat(), list_free()
Browse files Browse the repository at this point in the history
  • Loading branch information
minerba committed Dec 28, 2021
1 parent 02a5157 commit 5fc1611
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ typedef struct list_t {

#define list_ForEach(element, list) for(element = (list != NULL) ? (list)->firstEntry : NULL; element != NULL; element = element->nextListEntry)

list_t* list_create();
void list_free(list_t* listToFree);
list_t* oag_list_create();
void oag_list_free(list_t* listToFree);

void list_addElement(list_t* list, void* dataToAddInList);
listEntry_t* list_getElementAt(list_t *list, long indexOfElement);
Expand Down

0 comments on commit 5fc1611

Please sign in to comment.