diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-26 16:38:00 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-26 16:38:00 -0400 |
| commit | 97d5c458cfa039d857301e1ca7d5af3beb37131d (patch) | |
| tree | b460cd850d0537eb71806ba30358840377b27688 /static/unix-v10/man3/stdiobuf.3 | |
| parent | b89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff) | |
build: Better Build System
Diffstat (limited to 'static/unix-v10/man3/stdiobuf.3')
| -rw-r--r-- | static/unix-v10/man3/stdiobuf.3 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/static/unix-v10/man3/stdiobuf.3 b/static/unix-v10/man3/stdiobuf.3 new file mode 100644 index 00000000..eb35226d --- /dev/null +++ b/static/unix-v10/man3/stdiobuf.3 @@ -0,0 +1,39 @@ +. \"ident "%W%" +. \"Copyright (c) 1984 AT&T +. \"All Rights Reserved +. \"THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T +. \"The copyright notice above does not evidence any +. \"actual or intended publication of such source code. +.TH STDIOBUF 3I+ "C++ Stream Library" " " +.SH NAME +stdiobuf \- iostream specialized to stdio FILE +.SH SYNOPSIS +.ft B +.ta1i 2i +.nf +#include <iostream.h> +#include <strstream.h> +#include <stdio.h> + +class stdiobuf : streambuf { + stdiobuf(FILE* f); + FILE* stdiofile(); +} +.fi +.ft R +.SH DESCRIPTION +Operations on a +\f(CWstdiobuf\fR +are reflected on +the underlying +\f(CWFILE\fR. +A \f(CWstdiobuf\fR is constructed in unbuffered mode, which causes all operations +to be immediately reflected in the \f(CWFILE\fR. +\fBseek\fRs are translated into \fBfseek\fRs. +\fBsetbuf\fR has its usual meaning. If it supplies a reserve +area buffering will be turned back on. +.SH SEE ALSO +filebuf(3C++) +istream(3C++) +ostream(3C++) +ssbuf.pub(3C++) |
