28 lines
886 B
C
28 lines
886 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding / Class: 2IHIF
|
|
* ---------------------------------------------------------
|
|
* Exercise Number: S01
|
|
* Title: Simple Singly Linked List
|
|
* Author: Marc Tismonar
|
|
* ----------------------------------------------------------
|
|
* Description:
|
|
* The declaration of a linked list abstract data type
|
|
* based on an implementation of a simple singly linked list.
|
|
* ----------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef ___SIMPLE_SINGLY_LINKED_LIST__H
|
|
#define ___SIMPLE_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
|