#ifndef FONCTIONSMATRICESDYNAMIQUES_H_INCLUDED
#define FONCTIONSMATRICESDYNAMIQUES_H_INCLUDED

int** CreerMatriceDynamique(int nblignes, int nbcolonnes);
void LibererMatriceDynamique(int** mat, int nblignes);
void AfficherMatriceDynamqiue(int** mat, int nblignes, int nbcolonnes);
void RemplirMatriceDynamique(int ** mat, int nblignes, int nbcolonnes);

#endif // FONCTIONSMATRICESDYNAMIQUES_H_INCLUDED
