]> git.llucax.com Git - z.facultad/75.06/jacu.git/blob - src/mtf/mtof.c
Cambio flag "p" por "q" para cambiar el nivel de compresion con valores predefinidos...
[z.facultad/75.06/jacu.git] / src / mtf / mtof.c
1 #include <stdio.h>
2 #include "mtf.h"
3 #include <string.h>
4 #include <stdlib.h>
5
6 #define BUFFER_SIZE 2000000
7
8 int main(int argc, char *argv[] )
9 {
10         char buff[BUFFER_SIZE];
11         char *pos;
12         int len;
13         int i;
14         
15         len = fread(buff, 1, BUFFER_SIZE, stdin);
16         buff[len] = '\0';
17         pos = jacu_mtf(buff, len);
18         for(i=0; i<len; i++)
19                 putchar(pos[i]);
20
21         free(pos);
22         return 0;
23 }
24