06-chess/assignment/chess.c
2024-10-28 18:41:32 +01:00

15 lines
386 B
C

/*----------------------------------------------------------
* HTBLA-Leonding / 2IHIF
* ---------------------------------------------------------
* Description:
* Implementation of basic chess functions.
* ----------------------------------------------------------
*/
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#include "chess.h"
#include "chess_printer.h"