home *** CD-ROM | disk | FTP | other *** search
- /* :set tabstop=4 */
- /*
- * $Header: io.h,v 1.1 86/04/20 16:17:06 sysad Exp $
- */
-
- /*
- * $Log: io.h,v $
- * Revision 1.1 86/04/20 16:17:06 sysad
- * Initial distribution version
- *
- *
- */
-
-
- /* It is the intent of the author that this software may be distributed
- * and used freely, without restriction. If you make improvements or
- * enhancements, I would appreciate a copy.
- *
- * Duane H. Hesser Teltone Corporation
- * ....uw-beaver!tikal!sysad
- * ....uw-beaver!tikal!dhh
- */
-
- #define INBUFSIZE 2048
- #define OUTBUFSIZE 2048
-
- struct inbuf
- {
- int fd;
- int nleft;
- int eof;
- char *nextp;
- char buff[INBUFSIZE];
- };
-
- struct outbuf {
- int datalen;
- char *nextp;
- char buffer[OUTBUFSIZE];
- };
-