20 lines
633 B
C
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 */
|