home *** CD-ROM | disk | FTP | other *** search
- /*************************************************
- * *
- * "tee" Utility *
- * Copyright (c) 1988: by Delta Concepts Inc. *
- * All rights, not expressly granted herein, *
- * are reserved. *
- * *
- * The user is granted the right to make *
- * unlimited copies of this program and to *
- * distribute these copies as he/she desires, *
- * EXCEPT that Delta Concepts reserves the SOLE *
- * right to distribute the program for PROFIT. *
- * If the user distributes the product, the *
- * the may collect a duplication charge, not to *
- * exceed $5 per copy. *
- * *
- * *
- * Be sure to check Compuserve for future OS/2 *
- * shareware releases from Delta Concepts. *
- * *
- * For a complete catalog detailing the OS/2 *
- * shareware available from Delta Concepts Inc, *
- * send $5, check or money order, to: *
- * *
- * Delta Concepts Inc Dept 210 *
- * 249 South Hwy 101 suite 502 *
- * Solana Beach, CA 92075, USA *
- * *
- * Be sure to include your return address! *
- * *
- * *
- * All comments and suggestions are greatly *
- * appreciated and should be directed to *
- * *
- * Joel French *
- * User ID: 76576,3153 *
- * *
- *************************************************/
-
- #include <stdio.h>
-
- #define BUFFER_SIZE 256
-
- main (void) {
- unsigned char line [BUFFER_SIZE];
-
- while (fgets (line, BUFFER_SIZE, stdin) != NULL) {
- fputs (line, stdout);
- fputs (line, stderr);
- }
- return 0;
- }