12 lines
181 B
C
12 lines
181 B
C
#include "linkedList.h"
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
LinkedList list = createLinkedList();
|
|
freeLinkedList(&list);
|
|
printf("Success!\n");
|
|
return 0;
|
|
}
|