/** * @sa LIST_Add * @sa LIST_RemoveEntry */ bool LIST_Remove (linkedList_t **list, const void *data) { linkedList_t *l = LIST_GetPointer(*list, data); if (l != nullptr) return LIST_RemoveEntry(list, l); return false; }
static void testLinkedList (void) { linkedList_t *list = NULL; const char* data = "SomeDataForTheLinkedList"; const size_t length = strlen(data); linkedList_t *entry; const linkedList_t *entry2; const char *returnedData; entry = LIST_Add(&list, (const byte*)data, length); CU_ASSERT_EQUAL(LIST_Count(list), 1); CU_ASSERT_TRUE(entry != NULL); returnedData = (const char *)LIST_GetByIdx(list, 0); CU_ASSERT_TRUE(returnedData != NULL); entry2 = LIST_ContainsString(list, returnedData); CU_ASSERT_TRUE(entry2 != NULL); CU_ASSERT_EQUAL((const void*)entry2->data, (const void*)returnedData); CU_ASSERT_STRING_EQUAL(entry2->data, returnedData); LIST_RemoveEntry(&list, entry); CU_ASSERT_EQUAL(LIST_Count(list), 0); }