home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / quickplot / part2 / io.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  701 b   |  41 lines

  1. /* :set tabstop=4                                                    */
  2. /*
  3.  * $Header: io.h,v 1.1 86/04/20 16:17:06 sysad Exp $
  4.  */
  5.  
  6. /*
  7.  * $Log:    io.h,v $
  8.  * Revision 1.1  86/04/20  16:17:06  sysad
  9.  * Initial distribution version
  10.  * 
  11.  * 
  12.  */
  13.  
  14.  
  15. /* It is the intent of the author that this software may be distributed
  16.  * and used freely, without restriction.  If you make improvements or
  17.  * enhancements, I would appreciate a copy.
  18.  *
  19.  * Duane H. Hesser    Teltone Corporation
  20.  * ....uw-beaver!tikal!sysad
  21.  * ....uw-beaver!tikal!dhh
  22.  */
  23.  
  24. #define    INBUFSIZE    2048
  25. #define    OUTBUFSIZE    2048
  26.  
  27. struct inbuf
  28. {
  29.     int fd;
  30.     int nleft;
  31.     int eof;
  32.     char *nextp;
  33.     char buff[INBUFSIZE];
  34. };
  35.  
  36. struct outbuf {
  37.     int datalen;
  38.     char *nextp;
  39.     char buffer[OUTBUFSIZE];
  40. };
  41.