diff --git a/Fonderie/metriques.c b/Fonderie/metriques.c new file mode 100644 index 0000000..d878b0c --- /dev/null +++ b/Fonderie/metriques.c @@ -0,0 +1,22 @@ +/* + * metriques.c + */ + +#include + +extern int verbosity; + +/* -------------------------------------------------------------- */ + +int get_float_metric(FloatImg *pimg, float *where, int whot) +{ + +#if DEBUG_LEVEL +fprintf(stderr, ">>> %s ( %p %f %d )\n", __func__, pimg, where, whot); +#endif + +*where = 0; + +return -1; +} +/* -------------------------------------------------------------- */ diff --git a/Fonderie/metriques.h b/Fonderie/metriques.h new file mode 100644 index 0000000..69f0fcf --- /dev/null +++ b/Fonderie/metriques.h @@ -0,0 +1,9 @@ +/* + * metriques.h + */ + +/* -------------------------------------------------------------- */ + +int get_float_metric(FloatImg *pimg, float *where, int whot) + +/* -------------------------------------------------------------- */