Ajoute un court paquet de listes chaînées
This commit is contained in:
11
linked-list/test/testLinkedList.c
Normal file
11
linked-list/test/testLinkedList.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "linkedList.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
LinkedList list = createLinkedList();
|
||||
freeLinkedList(&list);
|
||||
printf("Success!\n");
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user