]> git.somenet.org - pub/jan/sysprog.git/blob - asm/mycat.c
GITOLITE.txt
[pub/jan/sysprog.git] / asm / mycat.c
1 /**************
2 * Name:         mycat.c
3 * Author:       Jan Vales (e0726236@student.tuwien.ac.at)
4 * Date:         9.11.2009
5 * Purpose:      reimplementation of "cat"
6 * Usage:        Usage: cat [opt]
7 * Output:       prints stdin to stdout
8 * BspNr:        1h
9 **************/
10
11 #include <stdio.h>
12 #include <errno.h>
13 #include <strings.h>
14 #include <string.h>
15 #include <assert.h>
16 #include <stdlib.h>
17 #include <getopt.h>
18 #include <unistd.h>
19
20 /* main program. reads input from stdin and prints requested stuff to stdout*/
21 int main(int argc, char **argv){
22         (void)fprintf(stderr,"%s Usage: mycat [opt]\n-E: replace newlines\n-T: replace Tabs\n-v: Print nonprintables (implies -E and -T)\n", argv[0]);
23         return 0;
24 }
25