18-simple-singly-linked-list/simple_singly_linked_list.h
github-classroom[bot] 43a72b80a5
Initial commit
2025-03-17 22:51:58 +00:00

28 lines
868 B
C

/*----------------------------------------------------------
* HTBLA-Leonding / Class: <your class>
* ---------------------------------------------------------
* Exercise Number: S01
* Title: Simple Singly Linked List
* Author: */<your name>;/*
* ----------------------------------------------------------
* 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