Browse Source

Misc.c/Tutorial.h fixed, Hendrik Voß

main
fdai7723 11 months ago
parent
commit
22496cf75b
  1. 2
      src/Tutorial.c
  2. 1
      src/Tutorial.h
  3. 1
      test/test_Misc.c

2
src/Tutorial.c

@ -10,7 +10,7 @@
void nach_Tutorial_fragen(int runden_zaehler){
char * abfrage;
printf("Do you need a Tutorial?\nY ?\nN ?\n");
abfrage = getuserinput();
abfrage = getUserInput();
if (abfrage == 'Y'){
// Regelwerk ausgeben
} else {

1
src/Tutorial.h

@ -5,6 +5,7 @@
#include "Spieler.h"
#include <stdbool.h>
#include <stdio.h>
#include "Input.h"
void nach_Tutorial_fragen(int runden_Zaehler);

1
test/test_Misc.c

@ -6,6 +6,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include "Input.h"
void test_king_alive() {
char** brett = malloc(8 * sizeof(char*));

Loading…
Cancel
Save