12-tower-of-hanoi/toh_board.c
github-classroom[bot] 87dcb960bf
Initial commit
2025-01-14 11:07:40 +00:00

20 lines
642 B
C

/*----------------------------------------------------------
* HTBLA-Leonding / Class: <your class>
* ---------------------------------------------------------
* Exercise Number: 09
* Title: Tower of Hanoi Disk ADT implementation
* Author: */<your name>/*
* ----------------------------------------------------------
* 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 */