trim-nou8.c
author viric@llimona
Tue, 28 Aug 2007 01:03:24 +0200
changeset 11 68ea18fe402c
parent 5 c87681fff7d3
permissions -rw-r--r--
Adding code for the zprocess, for processing the Zaliznjak dictionary.

#include <stdio.h>

int main()
{
    int i;
    do
    {
        /* Unsigned char cast to int */
        i = getchar();
        if (i == EOF)
            break;
        if (i == '\n' || (i >= ' ' && i < 0xfe))
            putchar(i);
    } while(1);

    return 0;
}