http_dec_test.c
author viric@llimona
Sun, 02 Sep 2007 15:57:34 +0200
changeset 25 8d524bb8dcea
parent 20 45798398f4c8
permissions -rw-r--r--
Changed the name for zprocess to prepare_akcentiga

#include <stdio.h>
#include "dictre.h"

int main()
{
    char tmp[500];
    int c;

    do
    {
        c = http_getc(stdin);
        if (c < 0)
            break;
        putchar(c);
    } while (1);

    printf("\nLast char val: %i\n", c);

    return 0;
}