Initial commit

This commit is contained in:
github-classroom[bot] 2025-04-01 10:41:03 +00:00 committed by GitHub
commit e6e6f4ae94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
69 changed files with 8332 additions and 0 deletions

View file

@ -0,0 +1,26 @@
/*----------------------------------------------------------
* HTBLA-Leonding / Class: <your class>
* ---------------------------------------------------------
* Exercise Number: S03
* Title: Advanced Singly Linked List
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* The declaration of a linked list abstract data type
* based on an implementation of an advanced singly linked list.
* ----------------------------------------------------------
*/
#ifndef ___ADVANCED_SINGLY_LINKED_LIST__H
#define ___ADVANCED_SINGLY_LINKED_LIST__H
#include "list.h"
/** This header file maps only the common 'list' interface
* into naming conventions for simple singly linked list implementation.
*
* It does (for now) not extend or alter the function prototypes of the
* common interface.
*/
#endif