home *** CD-ROM | disk | FTP | other *** search
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| sdctr.cpp |*/
- /*| |*/
- /*| Class stdiostream |*/
- /*| stdiostream::stdiostream( FILE * ) |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
- /*
- * C/C++ Run Time Library - Version 5.0
- *
- * Copyright (c) 1990, 1992 by Borland International
- * All Rights Reserved.
- *
- */
-
- #include <ioconfig.h>
- #include <filesys.h>
- #include <stdiostr.h>
-
- stdiostream::stdiostream(FILE _FAR * f) : buf(f)
- {
- ios::init(&buf);
- }
-
-
-