26 lines
805 B
C
26 lines
805 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding / Class: <your class>
|
|
* ---------------------------------------------------------
|
|
* Exercise Number: S04
|
|
* Title: Array backed List
|
|
* Author: S. Schraml
|
|
* ----------------------------------------------------------
|
|
* Description:
|
|
* The declaration of an abstract data type
|
|
* based on an implementation of an array backed list.
|
|
* ----------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef ___ARRAY_BACKED_LIST__H
|
|
#define ___ARRAY_BACKED_LIST__H
|
|
|
|
#include "list.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
|