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