From ee0179f81294ccf791fee010779b32f164597891 Mon Sep 17 00:00:00 2001 From: Jonathan Hager Date: Mon, 21 Nov 2022 23:55:49 +0100 Subject: [PATCH] =?UTF-8?q?Aufger=C3=A4umt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 6 ------ main.c | 11 ----------- 2 files changed, 17 deletions(-) delete mode 100644 .vscode/settings.json 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");