home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0423.ZIP / CCE_0423.PD / GPINCL13.ZOO / streambu.h < prev    next >
C/C++ Source or Header  |  1992-10-01  |  18KB  |  555 lines

  1. //    This is part of the iostream library, providing -*- C++ -*- input/output.
  2. //    Copyright (C) 1991 Per Bothner.
  3. //
  4. //    This library is free software; you can redistribute it and/or
  5. //    modify it under the terms of the GNU Library General Public
  6. //    License as published by the Free Software Foundation; either
  7. //    version 2 of the License, or (at your option) any later version.
  8. //
  9. //    This library is distributed in the hope that it will be useful,
  10. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. //    Library General Public License for more details.
  13. //
  14. //    You should have received a copy of the GNU Library General Public
  15.  
  16.  
  17. #ifndef _STREAMBUF_H
  18. #define _STREAMBUF_H
  19. #ifdef __GNUG__
  20. #pragma interface
  21. #endif
  22.  
  23. #include <g_config.h>
  24. #ifdef _G_NEED_STDARG_H
  25. #include <stdarg.h>
  26. #endif
  27. #ifndef fpos_t
  28. #define fpos_t _G_fpos_t
  29. #endif
  30.  
  31. #ifndef atarist
  32. #ifndef EOF
  33. #define EOF (-1)
  34. #endif
  35. #ifndef NULL
  36. #define NULL ((void*)0)
  37. #endif
  38. #else /* atari */
  39. #include <stddef.h>
  40. #include <stdio.h>
  41. extern "C" unsigned long __DEFAULT_BUFSIZ__;
  42. #endif
  43.  
  44.  
  45. class ostream; class streambuf; class backupbuf;
  46.  
  47. #ifdef _G_FRIEND_BUG
  48. extern int __UNDERFLOW(streambuf*);
  49. extern int __OVERFLOW(streambuf*, int);
  50. #endif
  51. extern "C" int __underflow(streambuf*);
  52. extern "C" int __overflow(streambuf*, int);
  53.  
  54. typedef _G_off_t streamoff;
  55. typedef _G_off_t streampos; // Should perhaps be _G_fpos_t ?
  56.  
  57. typedef unsigned long __fmtflags;
  58. typedef unsigned char __iostate;
  59.  
  60. struct _ios_fields { // The data members of an ios.
  61.     streambuf *_strbuf;
  62.     ostream* _tie;
  63.     int _width;
  64.     __fmtflags _flags;
  65.     char _fill;
  66.     __iostate _state;
  67.     unsigned short _precision;
  68. };
  69.  
  70. #define _IOS_GOOD    0
  71. #define _IOS_EOF    1
  72. #define _IOS_FAIL    2
  73. #define _IOS_BAD    4
  74.  
  75. #define _IOS_INPUT    1
  76. #define _IOS_OUTPUT    2
  77. #define _IOS_ATEND    4
  78. #define _IOS_APPEND    8
  79. #define _IOS_TRUNC    16
  80. #define _IOS_NOCREATE    32
  81. #define _IOS_NOREPLACE    64
  82.  
  83. #ifdef atarist
  84.   /* binary mode i/o flag */
  85. #define _IOS_BIN        (0x1000)
  86.  
  87.   /* force text mode */
  88. #define _IOS_TEXT        (0x2000)
  89. #endif
  90.  
  91. #ifdef _STREAM_COMPAT
  92. enum state_value {
  93.     _good = _IOS_GOOD,
  94.     _eof = _IOS_EOF,
  95.     _fail = _IOS_FAIL,
  96.     _bad = _IOS_BAD };
  97. enum open_mode {
  98.     input = _IOS_INPUT,
  99.     output = _IOS_OUTPUT,
  100.     atend = _IOS_ATEND,
  101.     append = _IOS_APPEND
  102. #ifdef atarist
  103.         ,
  104.     in_bin=_IOS_INPUT|_IOS_BIN,    // force bin mode regardless of default mode
  105.         out_bin=_IOS_OUTPUT|_IOS_BIN,
  106.         app_bin=_IOS_APPEND|_IOS_BIN,
  107.         binary= _IOS_BIN,    // flag that may be or'ed in
  108.  
  109.         in_text=_IOS_INPUT|_IOS_TEXT,    // force text mode
  110.     out_text=_IOS_OUTPUT|_IOS_TEXT,
  111.         app_text=_IOS_APPEND|_IOS_TEXT,
  112.         text=_IOS_TEXT        // flag that may be or'ed in
  113. #endif
  114.  };
  115. #endif
  116.  
  117. class ios : public _ios_fields {
  118.   public:
  119.     typedef __fmtflags fmtflags;
  120.     typedef __iostate iostate;
  121.     enum io_state {
  122.     goodbit = _IOS_GOOD,
  123.     eofbit = _IOS_EOF,
  124.     failbit = _IOS_FAIL,
  125.     badbit = _IOS_BAD };
  126.     enum open_mode {
  127.     in = _IOS_INPUT,
  128.     out = _IOS_OUTPUT,
  129.     ate = _IOS_ATEND,
  130.     app = _IOS_APPEND,
  131.     trunc = _IOS_TRUNC,
  132.     nocreate = _IOS_NOCREATE,
  133.     noreplace = _IOS_NOREPLACE
  134. #ifdef atarist
  135.     ,
  136.     in_bin = _IOS_INPUT|_IOS_BIN,
  137.     out_bin = _IOS_OUTPUT|_IOS_BIN,
  138.         ate_bin = _IOS_ATEND|_IOS_BIN,
  139.     app_bin = _IOS_APPEND|_IOS_BIN,
  140.         binary = _IOS_BIN,
  141.  
  142.     in_text = _IOS_INPUT|_IOS_TEXT,
  143.     out_text = _IOS_OUTPUT|_IOS_TEXT,
  144.         ate_text = _IOS_ATEND |_IOS_TEXT,
  145.     app_text = _IOS_APPEND|_IOS_TEXT,
  146.         text = _IOS_TEXT
  147. #endif
  148.     };
  149.     enum seek_dir { beg, cur, end};
  150.     enum { skipws=01, left=02, right=04, internal=010,
  151.        dec=020, oct=040, hex=0100,
  152.        showbase=0200, showpoint=0400, uppercase=01000, showpos=02000,
  153.        scientific=04000, fixed=0100000, unitbuf=020000, stdio=040000,
  154.        dont_close=0x80000000 //Don't delete streambuf on stream destruction
  155.        };
  156.  
  157.     ostream* tie() const { return _tie; }
  158.     ostream* tie(ostream* val) { ostream* save=_tie; _tie=val; return save; }
  159.  
  160.     // Methods to change the format state.
  161.     char fill() const { return _fill; }
  162.     char fill(char newf) { char oldf = _fill; _fill = newf; return oldf; }
  163.     fmtflags flags() const { return _flags; }
  164.     fmtflags flags(fmtflags new_val) {
  165.     fmtflags old_val = _flags; _flags = new_val; return old_val; }
  166.     int precision() const { return _precision; }
  167.     int precision(int newp) {
  168.     unsigned short oldp = _precision; _precision = (unsigned short)newp;
  169.     return oldp; }
  170.     fmtflags setf(fmtflags val) {
  171.     fmtflags oldbits = _flags;
  172.     _flags |= val; return oldbits; }
  173.     fmtflags setf(fmtflags val, fmtflags mask) {
  174.     fmtflags oldbits = _flags;
  175.     _flags = (_flags & ~mask) | (val & mask); return oldbits; }
  176.     fmtflags unsetf(fmtflags mask) {
  177.     fmtflags oldbits = _flags & mask;
  178.     _flags &= ~mask; return oldbits; }
  179.     long width() const { return _width; }
  180.     long width(long val) { long save = _width; _width = val; return save; }
  181.  
  182.     static const unsigned long basefield;
  183.     static const unsigned long adjustfield;
  184.     static const unsigned long floatfield;
  185.  
  186.     streambuf* rdbuf() const { return _strbuf; }
  187.     void clear(iostate state = 0) { _state = state; }
  188.     void set(iostate flag) { _state |= flag; } // In ANSI but not AT&T.
  189.     int good() const { return _state == 0; }
  190.     int eof() const { return _state & ios::eofbit; }
  191.     int fail() const { return _state & (ios::badbit|ios::failbit); }
  192.     int bad() const { return _state & ios::badbit; }
  193.     int rdstate() const { return _state; }
  194.     operator void*() const { return fail() ? (void*)0 : (void*)(-1); }
  195.     int operator!() const { return fail(); }
  196.  
  197. #ifdef _STREAM_COMPAT
  198.     void unset(state_value flag) { _state &= ~flag; }
  199.     void close();
  200.     int is_open();
  201.     int readable();
  202.     int writable();
  203. #endif
  204.  
  205.   protected:
  206.     ios(streambuf* sb = 0, ostream* tie = 0);
  207.     ~ios();
  208. };
  209.  
  210. #if __GNUG__==1
  211. typedef int _seek_dir;
  212. #else
  213. typedef ios::seek_dir _seek_dir;
  214. #endif
  215.  
  216. // Magic numbers and bits for the _flags field.
  217. // The magic numbers use the high-order bits of _flags;
  218. // the remaining bits are abailable for variable flags.
  219. // Note: The magic numbers must all be negative if stdio
  220. // emulation is desired.
  221.  
  222. #define _IO_MAGIC 0xFBAD0000 /* Magic number */
  223. #define _OLD_STDIO_MAGIC 0xFABC0000 /* Emulate old stdio. */
  224. #define _IO_MAGIC_MASK 0xFFFF0000
  225. #define _S_USER_BUF 1 /* User owns buffer; don't delete it on close. */
  226. #define _S_UNBUFFERED 2
  227. #define _S_NO_READS 4 /* Reading not allowed */
  228. #define _S_NO_WRITES 8 /* Writing not allowd */
  229. #define _S_EOF_SEEN 0x10
  230. #define _S_ERR_SEEN 0x20
  231. #define _S_DELETE_DONT_CLOSE 0x40
  232. #define _S_LINKED 0x80 // Set if linked (using _chain) to streambuf::_list_all.
  233. #define _S_IN_BACKUP 0x100
  234. #define _S_LINE_BUF 0x200
  235. #define _S_TIED_PUT_GET 0x400 // Set if put and get pointer logicly tied.
  236. #define _S_CURRENTLY_PUTTING 0x800
  237. #define _S_IS_BACKUPBUF 0x4000
  238. #define _S_IS_FILEBUF 0x8000
  239. #ifdef atarist
  240. #define _S_IS_BINARY _IOS_BIN
  241. #endif
  242.  
  243. // A streammarker remembers a position in a buffer.
  244. // You are guaranteed to be able to seek back to it if it is saving().
  245. class streammarker {
  246.     friend class streambuf;
  247. #ifdef _G_FRIEND_BUG
  248.     friend int __UNDERFLOW(streambuf*);
  249. #else
  250.     friend int __underflow(streambuf*);
  251. #endif
  252.     struct streammarker *_next;  // Only if saving()
  253.     streambuf *_sbuf; // Only valid if saving().
  254.     streampos _spos; // -2: means that _pos is valid.
  255.     void set_streampos(streampos sp) { _spos = sp; }
  256.     void set_offset(long offset) { _pos = offset; _spos = (streampos)(-2); }
  257.     // If _pos >= 0, it points to _buf->Gbase()+_pos.
  258.     // if _pos < 0, it points to _buf->eBptr()+_pos.
  259.     long _pos;
  260.   public:
  261.     streammarker(streambuf *sb);
  262.     ~streammarker();
  263.     int saving() { return  _spos == -2; }
  264.     int delta(streammarker&);
  265.     int delta();
  266. };
  267.  
  268. struct __streambuf {
  269.     // NOTE: If this is changed, also change __FILE in stdio/stdio.h!
  270.     unsigned long _flags; /* High-order word is _IO_MAGIC; rest is flags. */
  271.     char* _gptr;    /* Current get pointer */
  272.     char* _egptr;    /* End of get area. */
  273.     char* _eback;    /* Start of putback+get area. */
  274.     char* _pbase;    /* Start of put area. */
  275.     char* _pptr;    /* Current put pointer. */
  276.     char* _epptr;    /* End of put area. */
  277.     char* _base;    /* Start of reserve area. */
  278.     char* _ebuf;    /* End of reserve area. */
  279.     struct streambuf *_chain;
  280.  
  281.     // The following fields are used to support backing up and undo.
  282.     friend class streammarker;
  283.     char *_other_gbase; // Pointer to start of non-current get area.
  284.     char *_aux_limit;  // Pointer to first valid character of backup area,
  285.     char *_other_egptr; // Pointer to end of non-current get area.
  286.     streammarker *_markers;
  287.  
  288. #define __HAVE_COLUMN /* temporary */
  289.     // 1+column number of pbase(); 0 is unknown.
  290.     unsigned short _cur_column;
  291.     char _unused;
  292.     char _shortbuf[1];
  293. };
  294.  
  295. extern unsigned __adjust_column(unsigned start, const char *line, int count);
  296.  
  297. struct streambuf : private __streambuf {
  298.     friend class ios;
  299.     friend class istream;
  300.     friend class ostream;
  301.     friend class streammarker;
  302. #ifdef _G_FRIEND_BUG
  303.     friend int __UNDERFLOW(streambuf*);
  304. #else
  305.     friend int __underflow(streambuf*);
  306. #endif
  307.   protected:
  308.     static streambuf* _list_all; /* List of open streambufs. */
  309.     streambuf*& xchain() { return _chain; }
  310.     void _un_link();
  311.     void _link_in();
  312.     char* gptr() const { return _gptr; }
  313.     char* pptr() const { return _pptr; }
  314.     char* egptr() const { return _egptr; }
  315.     char* epptr() const { return _epptr; }
  316.     char* pbase() const { return _pbase; }
  317.     char* eback() const { return _eback; }
  318.     char* ebuf() const { return _ebuf; }
  319.     char* base() const { return _base; }
  320.     void xput_char(char c) { *_pptr++ = c; }
  321. #ifdef atarist
  322.     int  is_binary() { return _flags & _S_IS_BINARY ? 1 : 0; }
  323.     void set_binary() { _flags |= _S_IS_BINARY; }
  324. #endif
  325.     unsigned long xflags() { return _flags; }
  326.     unsigned long xflags(unsigned long f) { unsigned long fl = _flags; _flags = f; return fl; }
  327.     void xsetflags(unsigned long f) { _flags |= f; }
  328.     void xsetflags(unsigned long f, unsigned long mask) { _flags = (_flags & ~mask) | (f & mask); }
  329.     void gbump(int n) { _gptr += n; }
  330.     void pbump(int n) { _pptr += n; }
  331.     void setb(char* b, char* eb, int a=0);
  332.     void setp(char* p, char* ep) { _pbase=_pptr=p; _epptr=ep; }
  333.     void setg(char* eb, char* g, char *eg) { _eback=eb; _gptr=g; _egptr=eg; }
  334.     char *shortbuf() { return _shortbuf; }
  335.  
  336.     int in_backup() { return _flags & _S_IN_BACKUP; }
  337.     // The start of the main get area:  FIXME:  wrong for write-mode filebuf?
  338.     char *Gbase() { return in_backup() ? _other_gbase : _eback; }
  339.     // The end of the main get area:
  340.     char *eGptr() { return in_backup() ? _other_egptr : _egptr; }
  341.     // The start of the backup area:
  342.     char *Bbase() { return in_backup() ? _eback : _other_gbase; }
  343.     char *Bptr() { return _aux_limit; }
  344.     // The end of the backup area:
  345.     char *eBptr() { return in_backup() ? _egptr : _other_egptr; }
  346.     char *Nbase() { return _other_gbase; }
  347.     char *eNptr() { return _other_egptr; }
  348.     int have_backup() { return _other_gbase != NULL; }
  349.     int have_markers() { return _markers != NULL; }
  350.     long _least_marker();
  351.     void switch_to_main_get_area();
  352.     void switch_to_backup_area();
  353.     void free_backup_area();
  354.     void unsave_markers(); // Make all streammarkers !saving().
  355.     int put_mode() { return _flags & _S_CURRENTLY_PUTTING; }
  356.     int switch_to_get_mode();
  357.     
  358.     streambuf(long flags=0);
  359.   public:
  360.     static int flush_all();
  361.     static void flush_all_linebuffered(); // Flush all line buffered files.
  362. #if 0
  363.     virtual int underflow(); // Leave public for now
  364.     virtual int overflow(int c = EOF); // Leave public for now
  365. #else
  366.     virtual int underflow() = 0; // Leave public for now
  367.     virtual int overflow(int c = EOF) = 0; // Leave public for now
  368. #endif
  369.     virtual int doallocate();
  370.     virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
  371.     virtual streampos seekpos(streampos pos, int mode = ios::in|ios::out);
  372.     int seekmark(streammarker& mark, int delta = 0); //check type of delta
  373.     int sputbackc(char c);
  374.     int sungetc();
  375.  
  376.     virtual ~streambuf();
  377.     int unbuffered() { return _flags & _S_UNBUFFERED ? 1 : 0; }
  378.     int linebuffered() { return _flags & _S_LINE_BUF ? 1 : 0; }
  379.     void unbuffered(int i)
  380.     { if (i) _flags |= _S_UNBUFFERED; else _flags &= ~_S_UNBUFFERED; }
  381.     void linebuffered(int i)
  382.     { if (i) _flags |= _S_LINE_BUF; else _flags &= ~_S_LINE_BUF; }
  383.     int allocate() { // For AT&T compatibility
  384.     if (base() || unbuffered()) return 0;
  385.     else return doallocate(); }
  386.     // Allocate a buffer if needed; use _shortbuf if appropriate.
  387.     void allocbuf() { if (base() == NULL) doallocbuf(); }
  388.     void doallocbuf();
  389.     virtual int sync();
  390.     virtual int pbackfail(int c);
  391.     virtual int ungetfail();
  392.     virtual streambuf* setbuf(char* p, size_t len);
  393.     int in_avail() { return _egptr - _gptr; }
  394.     int out_waiting() { return _pptr - _pbase; }
  395.     virtual size_t sputn(const char* s, size_t n);
  396.     int padn(char pad, int n); // Emit 'n' copies of 'pad'.
  397.     virtual size_t sgetn(char* s, size_t n);
  398.     size_t ignore(size_t);
  399.     virtual int get_column();
  400.     virtual int set_column(int);
  401.     long sgetline(char* buf, _G_size_t n, char delim, int putback_delim);
  402.     int sbumpc() {
  403.     if (_gptr >= _egptr && __underflow(this) == EOF) return EOF;
  404. #ifndef atarist
  405.         return *(unsigned char*)_gptr++;
  406. #else
  407.         {
  408.         int ch = *(unsigned char*)_gptr++;
  409.         if((!is_binary()) && (ch == '\r'))
  410.         return sbumpc();
  411.         return ch;
  412.     }
  413. #endif
  414.     }
  415.  
  416.     int sgetc() {
  417.     if (_gptr >= _egptr && __underflow(this) == EOF) return EOF;
  418. #ifndef atarist
  419.         return *(unsigned char*)_gptr;
  420. #else
  421.         {
  422.         int ch = *(unsigned char *)_gptr;
  423.         if((!is_binary()) && (ch == '\r'))
  424.         return snextc();
  425.         return ch;
  426.     }
  427. #endif    
  428.     }
  429.     int snextc() {
  430.     if (++_gptr >= _egptr && __underflow(this) == EOF) return EOF;
  431. #ifndef atarist
  432.         return *(unsigned char*)_gptr;
  433. #else
  434.         {
  435.             int ch = *(unsigned char *)_gptr;
  436.         if((!is_binary()) && (ch == '\r'))
  437.         return snextc();
  438.         return ch;
  439.     }
  440. #endif
  441.      }
  442.  
  443. #ifdef atarist
  444.     int _atari_putc(int c) {
  445.     if ((!is_binary()) && ((c == '\n') || (c == '\r')))
  446.     {
  447.         if(c == '\r')
  448.         return (int)c;
  449.         if (_pptr >= _epptr)
  450.         {
  451.         if(__overflow(this, (unsigned char)'\r') == EOF) return EOF;
  452.         }
  453.         else
  454.         *_pptr++ = '\r';
  455.     }
  456.     if (_pptr >= _epptr) return __overflow(this, (unsigned char)c);
  457.     return *_pptr++ = c, (unsigned char)c;
  458.     }
  459. #endif
  460.  
  461.     int sputc(int c) {
  462. #ifndef atarist
  463.     if (_pptr >= _epptr) return __overflow(this, (unsigned char)c);
  464.     return *_pptr++ = c, (unsigned char)c;
  465. #else
  466.     return _atari_putc(c);
  467. #endif    
  468.     }
  469.  
  470.     void stossc() { if (_gptr < _egptr) _gptr++; }
  471.     int vscan(char const *fmt0, _G_va_list ap, ios::iostate* = NULL);
  472.     int vform(char const *fmt0, _G_va_list ap);
  473. #if 0 /* Work in progress */
  474.     int collumn();  // Current collumn number (of put pointer). -1 is unknown.
  475.     void collumn(int c);  // Set collumn number of put pointer to c.
  476. #endif
  477. };
  478.  
  479. // A backupbuf is a streambuf with full backup and savepoints on reading.
  480. // All standard streambufs in the GNU iostream library are backupbufs.
  481.  
  482. // A backupbuf may have two get area:
  483. // - The main get area, and (sometimes) the putback area.
  484. // Whichever one of these contains the gptr is the current get area;
  485. // the other one is the non-current get area.
  486.  
  487. class backupbuf : public streambuf {
  488.     friend class streammarker;
  489.   protected:
  490.     backupbuf(int flags=0) : streambuf(flags|_S_IS_BACKUPBUF) { }
  491.   public:
  492.     virtual int pbackfail(int c);
  493.     virtual int underflow();
  494.     virtual int overflow(int c = EOF);
  495. };
  496.  
  497. struct __file_fields {
  498.     short _fileno;
  499.     long _blksize;
  500.     fpos_t _offset;
  501. //    char* _save_gptr;  char* _save_egptr;
  502. };
  503.  
  504. class filebuf : public backupbuf {
  505.   protected:
  506.     struct __file_fields _fb;
  507.     void init();
  508.   public:
  509.     filebuf();
  510.     filebuf(int fd);
  511.     filebuf(int fd, char* p, size_t len);
  512.     ~filebuf();
  513.     filebuf* attach(int fd);
  514.     filebuf* open(const char *filename, const char *mode);
  515.     filebuf* open(const char *filename, int mode, int prot = 0664);
  516.     virtual int underflow();
  517.     virtual int overflow(int c = EOF);
  518.     int is_open() { return _fb._fileno >= 0; }
  519.     int fd() { return is_open() ? _fb._fileno : EOF; }
  520.     filebuf* close();
  521.     virtual int doallocate();
  522.     virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
  523.     size_t sputn(const char* s, size_t n);
  524.     size_t sgetn(char* s, size_t n);
  525.     virtual int sync();
  526.   protected: // See documentation in filebuf.C.
  527. //    virtual int pbackfail(int c);
  528.     int is_reading() { return eback() != egptr(); }
  529.     char* cur_ptr() { return is_reading() ?  gptr() : pptr(); }
  530.     /* System's idea of pointer */
  531.     char* file_ptr() { return eGptr(); }
  532.     int do_write(const char *data, int to_do);
  533.     int do_flush() { return do_write(_pbase, _pptr-_pbase); }
  534.     // Low-level operations (Usually invoke system calls.)
  535.     virtual _G_ssize_t sys_read(char* buf, _G_size_t size);
  536.     virtual fpos_t sys_seek(fpos_t, _seek_dir);
  537.     virtual _G_ssize_t sys_write(const void*, long);
  538.     virtual int sys_stat(void*); // Actually, a (struct stat*)
  539.     virtual int sys_close();
  540. };
  541.  
  542. #ifdef _STREAM_COMPAT
  543. inline int ios::readable() { return !(rdbuf()->_flags & _S_NO_READS); }
  544. inline int ios::writable() { return !(rdbuf()->_flags & _S_NO_WRITES); }
  545. inline int ios::is_open() { return (rdbuf()->_flags & _S_NO_READS+_S_NO_WRITES)
  546.                 != _S_NO_READS+_S_NO_WRITES; }
  547. #endif
  548. inline ios::ios(streambuf* sb /* = 0 */, ostream* tie /* = 0 */) {
  549.         _tie = tie; _strbuf=sb; _state=0; _width=0; _fill=' ';
  550.         _flags=ios::skipws; _precision=6; }
  551. inline ios::~ios() {
  552.     if (!(_flags & (unsigned int)ios::dont_close)) delete _strbuf; }
  553.  
  554. #endif /* _STREAMBUF_H */
  555.