home *** CD-ROM | disk | FTP | other *** search
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| fssbuf.cpp |*/
- /*| |*/
- /*| Class fstreambase |*/
- /*| void fstreambase::setbuf( char *, int ) |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
- /*
- * 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 <fstream.h>
-
- void fstreambase::setbuf(char* b, int len)
- {
- if( buf.setbuf(b, len) )
- clear(ios::goodbit);
- else
- setstate(ios::failbit);
- }
-
-
-