#ifndef THRESHOLD_H
#define THRESHOLD_H

#include "bitmap_8bit.h"
#include "bitmap_2bit.h"

Bitmap_2bit * threshold_8bit(Bitmap_8bit *source, unsigned char threshold);

#endif

