From 2c61e2dabaffe99e23219229e0377cf9c7e2fd11 Mon Sep 17 00:00:00 2001 From: MarcUs7i Date: Tue, 18 Mar 2025 12:28:18 +0100 Subject: [PATCH] Added the name & class. Added vscode folder to gitignore --- .gitignore | 1 + simple_singly_linked_list.c | 4 ++-- simple_singly_linked_list.h | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 56d4254..5ff172d 100644 --- a/.gitignore +++ b/.gitignore @@ -83,3 +83,4 @@ Temporary Items .apdisk # End of https://www.gitignore.io/api/c++,macos,linux +.vscode/ \ No newline at end of file diff --git a/simple_singly_linked_list.c b/simple_singly_linked_list.c index 3df8f23..39265b1 100644 --- a/simple_singly_linked_list.c +++ b/simple_singly_linked_list.c @@ -1,9 +1,9 @@ /*---------------------------------------------------------- - * HTBLA-Leonding / Class: + * HTBLA-Leonding / Class: 2IHIF * --------------------------------------------------------- * Exercise Number: S01 * Title: Simple Singly Linked List implementation - * Author: */;/* + * Author: Marc Tismonar * ---------------------------------------------------------- * Description: * Implementation of a simple singly linked list. diff --git a/simple_singly_linked_list.h b/simple_singly_linked_list.h index 103e80c..d25195c 100644 --- a/simple_singly_linked_list.h +++ b/simple_singly_linked_list.h @@ -1,9 +1,9 @@ /*---------------------------------------------------------- - * HTBLA-Leonding / Class: + * HTBLA-Leonding / Class: 2IHIF * --------------------------------------------------------- * Exercise Number: S01 * Title: Simple Singly Linked List - * Author: */;/* + * Author: Marc Tismonar * ---------------------------------------------------------- * Description: * The declaration of a linked list abstract data type