#ifndef ESTREAM_H
#define ESTREAM_H
#ifndef ESTREAMP_H
typdef char *estream;
typedef int (*io_func)(char *, char *, int);
#endif
io_func unix_read;
io_func unix_write;
estream eopen();
int eread();
void eclose();
int ewrite();
#endif
