/*---------------------------------------------------------- * HTBLA-Leonding / Class: 2IHIF * --------------------------------------------------------- * 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