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