18-simple-singly-linked-list/simple_singly_linked_list.h
MarcUs7i ae50527f75 yes
2025-03-18 18:26:12 +01:00

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