This commit is contained in:
2025-10-25 03:02:53 +03:00
commit 043225d523
3416 changed files with 681196 additions and 0 deletions

11
cppdraft/iostream/syn.md Normal file
View File

@@ -0,0 +1,11 @@
[iostream.syn]
# 31 Input/output library [[input.output]](./#input.output)
## 31.4 Standard iostream objects [[iostream.objects]](iostream.objects#iostream.syn)
### 31.4.1 Header <iostream> synopsis [iostream.syn]
[🔗](#header:%3ciostream%3e)
#include <ios> // see [[ios.syn]](ios.syn "31.5.1Header <ios> synopsis")#include <streambuf> // see [[streambuf.syn]](streambuf.syn "31.6.1Header <streambuf> synopsis")#include <istream> // see [[istream.syn]](istream.syn "31.7.1Header <istream> synopsis")#include <ostream> // see [[ostream.syn]](ostream.syn "31.7.2Header <ostream> synopsis")namespace std {extern istream cin; extern ostream cout; extern ostream cerr; extern ostream clog; extern wistream wcin; extern wostream wcout; extern wostream wcerr; extern wostream wclog;}