Name ordinateur and launch game with him

This commit is contained in:
flyingscorpio@arch-desktop 2021-12-01 22:52:21 +01:00
parent 5e8ba63284
commit b65a42b185
2 changed files with 9 additions and 3 deletions

10
main.c
View file

@ -28,6 +28,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include "affichage.h"
#include "misc.h"
@ -38,8 +39,8 @@ bool ORDINATEUR;
int main() {
int choix = 0;
char joueur1[10];
char joueur2[10];
char joueur1[15];
char joueur2[15];
// menu, avec choix à retourner dans un case
printf("\t\t**********************\n");
@ -64,6 +65,11 @@ int main() {
break;
case '2':
ORDINATEUR = true;
printf("Comment vous appelez-vous ? ");
nommer_joueur(joueur1);
strcpy(joueur2, "Ordinateur");
partie(joueur1, joueur2);
break;
case '3':
afficher_regles();

2
misc.c
View file

@ -10,7 +10,7 @@
void nommer_joueur(char *joueur) {
char *linefeed_position = NULL;
fgets(joueur, 10, stdin);
fgets(joueur, 15, stdin);
linefeed_position = strchr(joueur, '\n');
if (linefeed_position != NULL) {