19-advanced-doubly-linked-l.../doubly_linked_list_with_iterator.h
2025-03-26 18:32:53 +01:00

27 lines
870 B
C

/*----------------------------------------------------------
* HTBLA-Leonding / Class: 2IHIF
* ---------------------------------------------------------
* Exercise Number: S02
* Title: Doubly Linked List
* Author: Marc Tismonar
* ----------------------------------------------------------
* 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