http_dec_test.c
author viric@llimona
Sat, 01 Sep 2007 13:04:10 +0200
changeset 20 45798398f4c8
permissions -rw-r--r--
Test for http_dec.

#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;
}