diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 694ddf3..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "files.associations": { - "inputhandling.h": "c" - }, - "C_Cpp.errorSquiggles": "Disabled" -} \ No newline at end of file diff --git a/main.c b/main.c index 12ad32e..e883a07 100644 --- a/main.c +++ b/main.c @@ -6,17 +6,6 @@ #include "List/list.h" int main(){ - - List testListe; - testListe.head = 0; - testListe.tail = 0; - ListInsertBack(&testListe, 1); - ListInsertBack(&testListe, 2); - ListInsertBack(&testListe, 3); - ListInsertFront(&testListe, 6); - ListInsertBack(&testListe, 4); - ListInsertBack(&testListe, 5); - ListPrintForward(&testListe); InitWindow(800, 450, "basic window");