home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pmpipe.zip / pmpipe.c next >
C/C++ Source or Header  |  1996-07-14  |  296b  |  20 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int pmprintf(const unsigned char *f, char *s);
  5.  
  6. main (argc, argv)
  7.     int argc;
  8.     char *argv [];
  9. {
  10.     char s[256];
  11.  
  12.     setvbuf(stdin, NULL, _IONBF, 0);
  13.     
  14.     while (fgets(s, 256, stdin)) {
  15.     pmprintf("%s",s);
  16.     }
  17.     exit(0);
  18. }
  19.  
  20.