istream-internal.h revision 7d207b1e77a7b5e3fda640e353acfc86d261fedf
#ifndef __ISTREAM_INTERNAL_H
#define __ISTREAM_INTERNAL_H
#include "istream.h"
#include "iostream-internal.h"
struct _istream {
/* inheritance: */
/* methods: */
/* data: */
int fd;
const unsigned char *buffer;
unsigned char *w_buffer; /* may be NULL */
};
#endif