Initial commit

This commit is contained in:
github-classroom[bot] 2025-01-14 11:07:40 +00:00 committed by GitHub
commit 87dcb960bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
67 changed files with 6733 additions and 0 deletions

20
toh_board.c Normal file
View file

@ -0,0 +1,20 @@
/*----------------------------------------------------------
* 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 */