dos_compilers/Zortech C++ v30r1/INCLUDE/STDIOSTR.HPP
2024-07-02 08:01:21 -07:00

42 lines
759 B
C++

#ifndef __STDIOSTR_HPP
#define __STDIOSTR_HPP
#include <stdio.h>
#include <iostream.hpp>
class stdiobuf : public streambuf {
public:
stdiobuf(FILE*);
FILE* stdiofile() { return fp; }
~stdiobuf();
int underflow();
#if __ZTC__ > 0x214
int overflow(int=EOF);
#else
int overflow(int);
#endif
int pbackfail(int);
private:
FILE* fp;
char *gptr_;
char *egptr_;
// Save old gptr() & egptr() while using the
// pushback buffer.
char pushback_buf[4];
int fillbuf();
};
class stdiostream : public ios {
public:
stdiostream(FILE*);
~stdiostream();
stdiobuf* rdbuf() { return &buffer; }
private:
stdiobuf buffer;
};
#endif