#include <stdio.h>
#include "tiff.c"

char buffer[1500000];
int width, length ;

int main (int argc,char** argv) {

	tiff_read (&width, &length, argv[1], buffer); 

	return tiff_testswap (width, length, buffer);

	//tiff_write (width, length, stdout, buffer);
}
