From 58a8df5d72f3eed16d59b962c88b7737111b9e11 Mon Sep 17 00:00:00 2001 From: Siamak Date: Thu, 8 Feb 2024 03:27:51 +0100 Subject: [PATCH] =?UTF-8?q?Headerdatei=20f=C3=BCr=20die=20Funktion=20O=20g?= =?UTF-8?q?ewinnt=20waagerecht=20oben=20wurde=20erstellt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/c/funktionen.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index 59dabaa..7820ec3 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -35,15 +35,18 @@ int x_wins_02_12_22(char board[][3]); int x_wins_00_01_02(char board[][3]); //prüft, ob X bei Index 00, 01, 02 ist -int o_wins_00_10_20(char board[][3]) +int o_wins_00_10_20(char board[][3]); // prüft, ob O bei Index 00, 10, 20 ist. -int o_wins_01_11_21(char board[][3]) +int o_wins_01_11_21(char board[][3]); // prüft, ob O bei Index 01, 11, 21 ist. -int o_wins_02_12_22(char board[][3]) +int o_wins_02_12_22(char board[][3]); // prüft, ob O bei Index 02, 12, 22 ist. +int o_wins_00_01_02(char board[][3]); +// prüft, ob O bei Index 00, 01, 02 ist. + int string_character_counter(char string[]); // liefert die Länge eines Strings zurück