]> git.llucax.com Git - z.facultad/75.06/jacu.git/blob - src/mtf/main.c
Cambios minimos, no se si entraran en la impresion :(
[z.facultad/75.06/jacu.git] / src / mtf / main.c
1 /*----------------------------------------------------------------------------
2  *                   jacu - Just Another Compression Utility
3  *----------------------------------------------------------------------------
4  * This file is part of jacu.
5  *
6  * jacu is free software; you can redistribute it and/or modify it under the
7  * terms of the GNU General Public License as published by the Free Software
8  * Foundation; either version 2 of the License, or (at your option) any later
9  * version.
10  *
11  * jacu is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with jacu; if not, write to the Free Software Foundation, Inc., 59 Temple
18  * Place, Suite 330, Boston, MA  02111-1307  USA
19  *----------------------------------------------------------------------------
20  */
21
22 #include <stdio.h>
23 #include "mtf.h"
24 #include <string.h>
25 #include <stdlib.h>
26
27 #define BUFFER_SIZE 2000000
28
29 int main(int argc, char *argv[] )
30 {
31         char buff[BUFFER_SIZE];
32         char *z, *dato;
33         char *pos;
34         int len;
35         int i, size, z_len;
36         
37         len = fread(buff, 1, BUFFER_SIZE, stdin);
38         buff[len] = '\0';
39         pos = jacu_mtf(buff, len, &z, &z_len);
40         
41         printf("Z len = %d\n",z_len);
42         print_z(z, z_len);
43         for(i=0; i<len; i++)
44                 printf("%d ",pos[i]);/*putchar(pos[i]);*/
45
46         printf("\n-----Inversa del MTF-----\n");        
47         z = jacu_buscar_z(buff, len, &size);
48         print_z(z, size);
49         printf("Z_INV len = %d\n",size);
50         dato = jacu_mtf_inv(z, pos, len);
51         for(i=0; i<len; i++)
52                 putchar(dato[i]);
53
54         free(dato);
55         free(z);
56         free(pos);
57
58         return 0;
59 }