/*---------------------------------------------------*/ /* module : FonctionDemo.h */ /* auteur : Mignotte Max */ /* date : 10/09/99 */ /* langage : C */ /* labo : DIRO */ /*---------------------------------------------------*/ #ifndef FONCTIONDEMO_H #define FONCTIONDEMO_H /*------------------------------------------------*/ /* FICHIERS INCLUS -------------------------------*/ /*------------------------------------------------*/ #include #include #include #include #include /*------------------------------------------------*/ /* DEFINITIONS -----------------------------------*/ /*------------------------------------------------*/ #define NBCHAR 200 /*------------------------------------------------*/ /* PROTOTYPES DES FONCTIONS ---------------------*/ /*------------------------------------------------*/ float* fmatrix_allocate_1d(int); float** fmatrix_allocate_2d(int,int); void free_fmatrix_1d(float*); void free_fmatrix_2d(float**); void LoadImagePgm(char*,float**,int,int); void SaveImagePgm(char*,float**,int,int); #endif