#ifndef GRIS_CONVERT
#define GRIS_CONVERT

#include <math.h>    
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

//Prend un .ppm en entrée et crée un .ppm de l'image grayscalée en sortie (ca se dit, grayscalée?)
void TablToGris(Piquesel** tableau,char* sortie,int taille0,int taille1);

#endif



