2023-12-16 14:11:35 +01:00
|
|
|
#ifndef MODIFTAB_H
|
|
|
|
#define MODIFTAB_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <graph.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#define H 42
|
|
|
|
#define L 62
|
|
|
|
|
|
|
|
int Pastille(int tab[H][L], int nb_de_pastilles, int type_pastille);
|
2023-12-19 14:10:32 +01:00
|
|
|
void init(int tab[H][L]);
|
2023-12-16 14:11:35 +01:00
|
|
|
|
|
|
|
#endif // MODIFTAB_H
|