1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <signal.h>
4 #include <math.h>
5 #include <malloc.h>
6 #include <errno.h>
7 #include "filtere.c"
8 
9 typedef unsigned char byte;
10 
main()11 void main()
12 {
13   int x,y,t;
14   int tot,max=255;
15   byte ant;
16   char *buffer,kode;
17 
18   buffer=load(stdin,&x,&y,RLK|FSCANFPRINTF);
19   save(stdout,buffer,x,y,RLK|MYGETPUT);
20 }
21