20-queue-and-stack/advanced_singly_linked_list.h
2025-04-09 08:31:55 +02:00

26 lines
857 B
C

/*----------------------------------------------------------
* 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