2021-11-30 16:37:07 +01:00
|
|
|
/* partie.h */
|
|
|
|
|
|
|
|
#ifndef DEF_PARTIE
|
|
|
|
#define DEF_PARTIE
|
|
|
|
|
2021-12-01 22:42:58 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
extern bool ORDINATEUR;
|
|
|
|
|
2021-11-30 17:03:47 +01:00
|
|
|
int jouer_coup(); // renvoie faux si le coup n'est pas valide (il devra être rejoué)
|
|
|
|
void partie(char*, char*); // boucle infinie qui alterne les joueurs puis affiche le perdant
|
2021-11-30 16:37:07 +01:00
|
|
|
|
|
|
|
#endif
|