12-tower-of-hanoi/toh_board.c
2025-01-18 20:04:53 +01:00

20 lines
633 B
C

/*----------------------------------------------------------
* HTBLA-Leonding / Class: 2IHIF
* ---------------------------------------------------------
* Exercise Number: 09
* Title: Tower of Hanoi Disk ADT implementation
* Author: Marc Tismonar
* ----------------------------------------------------------
* Description:
* Implementation of toh_board.h.
* ----------------------------------------------------------
*/
#include "toh_board.h"
#include "config.h"
#include "toh_disk.h"
/** Abstraction of a rod type */
/* Hint: Define a type 'Rod' as a pointer to Disk
for usage in exchange with Disk array */