#ifndef _HISTOGRAMME_H_
#define _HISTOGRAMME_H_

struct histogramme {
  int n;
  int *valeurs;
};

#endif
