src-filters: Add missing includes, reduce warnings
[h316.git] / pc-tools / src-filters / paron.c
CommitLineData
437b3ba8 1#include <stdio.h>
2#include <math.h>
3#include <string.h>
b30bf85c 4#include <unistd.h>
437b3ba8 5
6#define BUF_SIZ 100000
7#define LINE_LENGTH 72
8// ssize_t getline(char **lineptr, size_t *n, FILE *stream);
9
10int main(int argc, char ** argv){
11 char buffer;
12 while (read(0,&buffer,1)) {
13 buffer|=128;
14 write(1,&buffer,1);
15 }
16
17} // main()
18// Ende
19