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