Initial commit

This commit is contained in:
github-classroom[bot] 2025-03-24 23:14:50 +00:00 committed by GitHub
commit 9d2733d705
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
63 changed files with 7330 additions and 0 deletions

View file

@ -0,0 +1,27 @@
/*----------------------------------------------------------
* HTBLA-Leonding / Class: <your class>
* ---------------------------------------------------------
* Exercise Number: S02
* Title: Doubly Linked List
* Author: */<your name;/*
* ----------------------------------------------------------
* Description:
* The declaration of a linked list abstract data type
* based on an implementation of a doubly linked list.
* ----------------------------------------------------------
*/
#ifndef ___DOUBLY_LINKED_LIST__H
#define ___DOUBLY_LINKED_LIST__H
#include "list.h"
#include "list_iterator.h"
/** This header file maps only the common 'list' interface
* into naming conventions for doubly linked list implementation.
*
* It does (for now) not extend or alter the function prototypes of the
* common interface.
*/
#endif