os/ossrv/stdcpp/src/strstream.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 *
sl@0
     4
 * Copyright (c) 1999
sl@0
     5
 * Silicon Graphics Computer Systems, Inc.
sl@0
     6
 *
sl@0
     7
 * Copyright (c) 1999 
sl@0
     8
 * Boris Fomitchev
sl@0
     9
 *
sl@0
    10
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    11
 * or implied. Any use is at your own risk.
sl@0
    12
 *
sl@0
    13
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    14
 * without fee, provided the above notices are retained on all copies.
sl@0
    15
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    16
 * provided the above notices are retained, and a notice that the code was
sl@0
    17
 * modified is included with the above copyright notice.
sl@0
    18
 *
sl@0
    19
 */ 
sl@0
    20
sl@0
    21
// Implementation of the classes in header <strstream>.
sl@0
    22
// WARNING: The classes defined in <strstream> are DEPRECATED.  This
sl@0
    23
// header is defined in section D.7.1 of the C++ standard, and it
sl@0
    24
// MAY BE REMOVED in a future standard revision.  You should use the
sl@0
    25
// header <sstream> instead.
sl@0
    26
sl@0
    27
# include "stlport_prefix.h"
sl@0
    28
#include <stl/_strstream.h>
sl@0
    29
#include <stl/_algobase.h>
sl@0
    30
sl@0
    31
_STLP_BEGIN_NAMESPACE
sl@0
    32
sl@0
    33
// strstreambuf constructor, destructor.
sl@0
    34
sl@0
    35
_STLP_EXP_DECLSPEC strstreambuf::strstreambuf(streamsize initial_capacity)
sl@0
    36
   :  _M_alloc_fun(0), _M_free_fun(0),
sl@0
    37
     _M_dynamic(true), _M_frozen(false), _M_constant(false)  
sl@0
    38
#ifdef __SYMBIAN32__
sl@0
    39
    , _pfrozenendsave(NULL)
sl@0
    40
    ,_pgetfrozenendsave( NULL)
sl@0
    41
#endif     
sl@0
    42
{
sl@0
    43
  streamsize n = (max)(initial_capacity, streamsize(16));
sl@0
    44
sl@0
    45
  char* buf = _M_alloc(n);
sl@0
    46
#ifdef __SYMBIAN32__  
sl@0
    47
  *buf = '\0';
sl@0
    48
#endif  
sl@0
    49
  if (buf) {
sl@0
    50
    setp(buf, buf + n);
sl@0
    51
    setg(buf, buf, buf);
sl@0
    52
  }
sl@0
    53
}
sl@0
    54
sl@0
    55
sl@0
    56
sl@0
    57
_STLP_EXP_DECLSPEC strstreambuf::strstreambuf(__alloc_fn alloc_f, __free_fn free_f)
sl@0
    58
  : _M_alloc_fun(alloc_f), _M_free_fun(free_f),
sl@0
    59
    _M_dynamic(true), _M_frozen(false), _M_constant(false)
sl@0
    60
#ifdef __SYMBIAN32__
sl@0
    61
    , _pfrozenendsave(NULL)
sl@0
    62
    ,_pgetfrozenendsave( NULL)
sl@0
    63
#endif     
sl@0
    64
{
sl@0
    65
  streamsize n = 16;
sl@0
    66
#ifndef __SYMBIAN32__  
sl@0
    67
  char* buf = _M_alloc(n);
sl@0
    68
#else
sl@0
    69
  char* buf = NULL;
sl@0
    70
  if(alloc_f!=NULL)
sl@0
    71
  	buf = (char*)_M_alloc_fun(n);
sl@0
    72
  else
sl@0
    73
  	buf = _M_alloc(n);
sl@0
    74
  if(buf)
sl@0
    75
  	*buf = '\0';
sl@0
    76
#endif 
sl@0
    77
  if (buf) {
sl@0
    78
    setp(buf, buf + n);
sl@0
    79
    setg(buf, buf, buf);
sl@0
    80
  }
sl@0
    81
}
sl@0
    82
sl@0
    83
_STLP_EXP_DECLSPEC strstreambuf::strstreambuf(char* get, streamsize n, char* put)
sl@0
    84
  : _M_alloc_fun(0), _M_free_fun(0),
sl@0
    85
    _M_dynamic(false), _M_frozen(false), _M_constant(false)
sl@0
    86
#ifdef __SYMBIAN32__
sl@0
    87
    , _pfrozenendsave(NULL)
sl@0
    88
    ,_pgetfrozenendsave( NULL)
sl@0
    89
#endif     
sl@0
    90
{
sl@0
    91
  _M_setup(get, put, n);
sl@0
    92
}
sl@0
    93
sl@0
    94
_STLP_EXP_DECLSPEC strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put)
sl@0
    95
  : _M_alloc_fun(0), _M_free_fun(0),
sl@0
    96
    _M_dynamic(false), _M_frozen(false), _M_constant(false)
sl@0
    97
#ifdef __SYMBIAN32__
sl@0
    98
    , _pfrozenendsave(NULL)
sl@0
    99
    ,_pgetfrozenendsave( NULL)
sl@0
   100
#endif     
sl@0
   101
{
sl@0
   102
  _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n);
sl@0
   103
}
sl@0
   104
sl@0
   105
_STLP_EXP_DECLSPEC strstreambuf::strstreambuf(unsigned char* get, streamsize n,
sl@0
   106
                           unsigned char* put)
sl@0
   107
  : _M_alloc_fun(0), _M_free_fun(0),
sl@0
   108
    _M_dynamic(false), _M_frozen(false), _M_constant(false)
sl@0
   109
#ifdef __SYMBIAN32__
sl@0
   110
    , _pfrozenendsave(NULL)
sl@0
   111
    ,_pgetfrozenendsave( NULL)
sl@0
   112
#endif     
sl@0
   113
{
sl@0
   114
  _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n);
sl@0
   115
}
sl@0
   116
sl@0
   117
_STLP_EXP_DECLSPEC strstreambuf::strstreambuf(const char* get, streamsize n)
sl@0
   118
  : _M_alloc_fun(0), _M_free_fun(0),
sl@0
   119
    _M_dynamic(false), _M_frozen(false), _M_constant(true)
sl@0
   120
#ifdef __SYMBIAN32__
sl@0
   121
    , _pfrozenendsave(NULL)
sl@0
   122
    ,_pgetfrozenendsave( NULL)
sl@0
   123
#endif     
sl@0
   124
{
sl@0
   125
  _M_setup(__CONST_CAST(char*,get), 0, n);
sl@0
   126
}
sl@0
   127
sl@0
   128
_STLP_EXP_DECLSPEC strstreambuf::strstreambuf(const signed char* get, streamsize n)
sl@0
   129
  : _M_alloc_fun(0), _M_free_fun(0),
sl@0
   130
    _M_dynamic(false), _M_frozen(false), _M_constant(true)
sl@0
   131
#ifdef __SYMBIAN32__
sl@0
   132
    , _pfrozenendsave(NULL)
sl@0
   133
    ,_pgetfrozenendsave( NULL)
sl@0
   134
#endif     
sl@0
   135
{
sl@0
   136
  _M_setup(__REINTERPRET_CAST(char*, __CONST_CAST(signed char*,get)), 0, n);
sl@0
   137
}
sl@0
   138
sl@0
   139
_STLP_EXP_DECLSPEC strstreambuf::strstreambuf(const unsigned char* get, streamsize n)
sl@0
   140
  : _M_alloc_fun(0), _M_free_fun(0),
sl@0
   141
    _M_dynamic(false), _M_frozen(false), _M_constant(true)
sl@0
   142
#ifdef __SYMBIAN32__
sl@0
   143
    , _pfrozenendsave(NULL)
sl@0
   144
    ,_pgetfrozenendsave( NULL)
sl@0
   145
#endif     
sl@0
   146
{
sl@0
   147
  _M_setup(__REINTERPRET_CAST(char*, __CONST_CAST(unsigned char*,get)), 0, n);
sl@0
   148
}
sl@0
   149
sl@0
   150
_STLP_EXP_DECLSPEC void strstreambuf::freeze(bool frozenflag)
sl@0
   151
{
sl@0
   152
#ifdef __SYMBIAN32__
sl@0
   153
  if (_M_dynamic)
sl@0
   154
  {
sl@0
   155
    //
sl@0
   156
	if (frozenflag && !_M_frozen)
sl@0
   157
		{	// disable writing
sl@0
   158
		_M_frozen = frozenflag;
sl@0
   159
		_pfrozenendsave = epptr();
sl@0
   160
        _pgetfrozenendsave = pptr();
sl@0
   161
		setp(pbase(), eback());
sl@0
   162
		}
sl@0
   163
	else if (!frozenflag && _M_frozen)
sl@0
   164
		{	// re-enable writing
sl@0
   165
		_M_frozen = frozenflag;
sl@0
   166
		if(_pfrozenendsave != NULL)
sl@0
   167
		    {
sl@0
   168
		    setp(pbase(), _pfrozenendsave);
sl@0
   169
		    setg(pbase(),  pbase(), _pgetfrozenendsave);
sl@0
   170
		    }
sl@0
   171
		}
sl@0
   172
  }
sl@0
   173
#else
sl@0
   174
  if (_M_dynamic)
sl@0
   175
    _M_frozen = frozenflag;
sl@0
   176
#endif
sl@0
   177
}
sl@0
   178
sl@0
   179
_STLP_EXP_DECLSPEC char* strstreambuf::str()
sl@0
   180
{
sl@0
   181
  freeze(true);
sl@0
   182
  return eback();
sl@0
   183
}
sl@0
   184
sl@0
   185
_STLP_EXP_DECLSPEC int strstreambuf::pcount() const
sl@0
   186
{
sl@0
   187
  return int(pptr() ? pptr() - pbase() : 0);
sl@0
   188
}
sl@0
   189
sl@0
   190
_STLP_EXP_DECLSPEC strstreambuf::int_type strstreambuf::overflow(int_type c) {
sl@0
   191
  if (c == traits_type::eof())
sl@0
   192
    return traits_type::not_eof(c);
sl@0
   193
#ifdef __SYMBIAN32__
sl@0
   194
  if (pptr() != 0 && pptr() < epptr())
sl@0
   195
  {
sl@0
   196
    *pptr() = c;
sl@0
   197
    pbump(1);
sl@0
   198
    return c;
sl@0
   199
  }
sl@0
   200
  if (!_M_dynamic || _M_constant || _M_frozen)
sl@0
   201
  	return (EOF);	// can't extend
sl@0
   202
#endif
sl@0
   203
  // Try to expand the buffer.
sl@0
   204
  if (pptr() == epptr() && _M_dynamic && !_M_frozen && !_M_constant) {
sl@0
   205
    ptrdiff_t old_size = epptr() - pbase();
sl@0
   206
    ptrdiff_t new_size = (max)(2 * old_size, ptrdiff_t(1));
sl@0
   207
sl@0
   208
    char* buf = _M_alloc(new_size);
sl@0
   209
    if (buf) {
sl@0
   210
      memcpy(buf, pbase(), old_size);
sl@0
   211
sl@0
   212
      char* old_buffer = pbase();
sl@0
   213
      bool reposition_get = false;
sl@0
   214
      ptrdiff_t old_get_offset;
sl@0
   215
      if (gptr() != 0) {
sl@0
   216
        reposition_get = true;
sl@0
   217
        old_get_offset = gptr() - eback();
sl@0
   218
      }
sl@0
   219
sl@0
   220
      setp(buf, buf + new_size);
sl@0
   221
      pbump((int)old_size);
sl@0
   222
sl@0
   223
      if (reposition_get) 
sl@0
   224
        setg(buf, buf + old_get_offset, buf + (max)(old_get_offset, old_size));
sl@0
   225
sl@0
   226
      _M_free(old_buffer);
sl@0
   227
    }
sl@0
   228
  }
sl@0
   229
sl@0
   230
  if (pptr() != epptr()) {
sl@0
   231
    *pptr() = c;
sl@0
   232
    pbump(1);
sl@0
   233
    return c;
sl@0
   234
  }
sl@0
   235
  else
sl@0
   236
    return traits_type::eof();
sl@0
   237
}
sl@0
   238
sl@0
   239
_STLP_EXP_DECLSPEC strstreambuf::int_type strstreambuf::pbackfail(int_type c)
sl@0
   240
{
sl@0
   241
  if (gptr() != eback()) {
sl@0
   242
    if (c == _Traits::eof()) {
sl@0
   243
      gbump(-1);
sl@0
   244
      return _Traits::not_eof(c);
sl@0
   245
    }
sl@0
   246
    else if (c == gptr()[-1]) {
sl@0
   247
      gbump(-1);
sl@0
   248
      return c;
sl@0
   249
    }
sl@0
   250
    else if (!_M_constant) {
sl@0
   251
      gbump(-1);
sl@0
   252
      *gptr() = c;
sl@0
   253
      return c;
sl@0
   254
    }
sl@0
   255
  }
sl@0
   256
sl@0
   257
  return _Traits::eof();
sl@0
   258
}
sl@0
   259
sl@0
   260
_STLP_EXP_DECLSPEC strstreambuf::int_type strstreambuf::underflow()
sl@0
   261
{
sl@0
   262
  if (gptr() == egptr() && pptr() && pptr() > egptr())
sl@0
   263
    setg(eback(), gptr(), pptr());
sl@0
   264
sl@0
   265
  if (gptr() != egptr())
sl@0
   266
    return (unsigned char) *gptr();
sl@0
   267
  else
sl@0
   268
    return _Traits::eof();
sl@0
   269
}
sl@0
   270
sl@0
   271
_STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >* 
sl@0
   272
strstreambuf::setbuf(char*, streamsize)
sl@0
   273
{
sl@0
   274
  return this;
sl@0
   275
}
sl@0
   276
sl@0
   277
_STLP_EXP_DECLSPEC strstreambuf::pos_type
sl@0
   278
strstreambuf::seekoff(off_type off,
sl@0
   279
                      ios_base::seekdir dir, ios_base::openmode mode)
sl@0
   280
{
sl@0
   281
  bool do_get = false;
sl@0
   282
  bool do_put = false;
sl@0
   283
sl@0
   284
  if ((mode & (ios_base::in | ios_base::out)) ==
sl@0
   285
          (ios_base::in | ios_base::out) &&
sl@0
   286
      (dir == ios_base::beg || dir == ios_base::end))
sl@0
   287
    do_get = do_put = true;
sl@0
   288
  else if (mode & ios_base::in)
sl@0
   289
    do_get = true;
sl@0
   290
  else if (mode & ios_base::out)
sl@0
   291
    do_put = true;
sl@0
   292
sl@0
   293
  // !gptr() is here because, according to D.7.1 paragraph 4, the seekable
sl@0
   294
  // area is undefined if there is no get area.
sl@0
   295
  if ((!do_get && !do_put) || (do_put && !pptr()) || !gptr())
sl@0
   296
    return pos_type(off_type(-1));
sl@0
   297
sl@0
   298
  char* seeklow  = eback();
sl@0
   299
  char* seekhigh = epptr() ? epptr() : egptr();
sl@0
   300
sl@0
   301
  off_type newoff;
sl@0
   302
  switch(dir) {
sl@0
   303
  case ios_base::beg:
sl@0
   304
    newoff = 0;
sl@0
   305
    break;
sl@0
   306
  case ios_base::end:
sl@0
   307
    newoff = seekhigh - seeklow;
sl@0
   308
    break;
sl@0
   309
  case ios_base::cur:
sl@0
   310
    newoff = do_put ? pptr() - seeklow : gptr() - seeklow;
sl@0
   311
    break;
sl@0
   312
  default:
sl@0
   313
    return pos_type(off_type(-1));
sl@0
   314
  }
sl@0
   315
sl@0
   316
  off += newoff;
sl@0
   317
  if (off < 0 || off > seekhigh - seeklow)
sl@0
   318
    return pos_type(off_type(-1));
sl@0
   319
sl@0
   320
  if (do_put) {
sl@0
   321
    if (seeklow + off < pbase()) {
sl@0
   322
      setp(seeklow, epptr());
sl@0
   323
      pbump((int)off);
sl@0
   324
    }
sl@0
   325
    else {
sl@0
   326
      setp(pbase(), epptr());
sl@0
   327
      pbump((int)(off - (pbase() - seeklow)));
sl@0
   328
    }
sl@0
   329
  }
sl@0
   330
  if (do_get) {
sl@0
   331
    if (off <= egptr() - seeklow)
sl@0
   332
      setg(seeklow, seeklow + off, egptr());
sl@0
   333
    else if (off <= pptr() - seeklow)
sl@0
   334
      setg(seeklow, seeklow + off, pptr());
sl@0
   335
    else
sl@0
   336
      setg(seeklow, seeklow + off, epptr());
sl@0
   337
  }
sl@0
   338
#ifndef __SYMBIAN32__
sl@0
   339
  return pos_type(newoff);
sl@0
   340
#else
sl@0
   341
  return pos_type(off);
sl@0
   342
#endif  
sl@0
   343
}
sl@0
   344
sl@0
   345
_STLP_EXP_DECLSPEC strstreambuf::pos_type
sl@0
   346
strstreambuf::seekpos(pos_type pos, ios_base::openmode mode)
sl@0
   347
{
sl@0
   348
  return seekoff(pos - pos_type(off_type(0)), ios_base::beg, mode);
sl@0
   349
}
sl@0
   350
sl@0
   351
sl@0
   352
char* strstreambuf::_M_alloc(size_t n)
sl@0
   353
{
sl@0
   354
  if (_M_alloc_fun)
sl@0
   355
    return __STATIC_CAST(char*,_M_alloc_fun(n));
sl@0
   356
  else
sl@0
   357
    return new char[n];
sl@0
   358
}
sl@0
   359
sl@0
   360
void strstreambuf::_M_setup(char* get, char* put, streamsize n)
sl@0
   361
{
sl@0
   362
  if (get) {
sl@0
   363
    size_t N = n > 0 ? size_t(n) : n == 0 ? strlen(get) : size_t(INT_MAX);
sl@0
   364
    
sl@0
   365
    if (put) {
sl@0
   366
      if(put == get)
sl@0
   367
        setg(get, get, put + N);
sl@0
   368
      else
sl@0
   369
#ifndef __SYMBIAN32__      
sl@0
   370
      	setg(get, get, put);      
sl@0
   371
      	setp(put, put + N);
sl@0
   372
#else
sl@0
   373
		setg(get, get, put + N-(put-get));      
sl@0
   374
		setp(put, put + N-(put-get));
sl@0
   375
#endif      	
sl@0
   376
    }
sl@0
   377
    else {
sl@0
   378
      setg(get, get, get + N);
sl@0
   379
    }
sl@0
   380
  }
sl@0
   381
}
sl@0
   382
sl@0
   383
//----------------------------------------------------------------------
sl@0
   384
// Class istrstream
sl@0
   385
sl@0
   386
_STLP_EXP_DECLSPEC istrstream::istrstream(char* s)
sl@0
   387
  : basic_istream<char, char_traits<char> >(0), _M_buf(s, 0)
sl@0
   388
{
sl@0
   389
  this->init(&_M_buf);
sl@0
   390
}
sl@0
   391
sl@0
   392
_STLP_EXP_DECLSPEC istrstream::istrstream(const char* s)
sl@0
   393
  : basic_istream<char, char_traits<char> >(0), _M_buf(s, 0)
sl@0
   394
{
sl@0
   395
  this->init(&_M_buf);
sl@0
   396
}
sl@0
   397
sl@0
   398
_STLP_EXP_DECLSPEC istrstream::istrstream(char* s, streamsize n)
sl@0
   399
  : basic_istream<char, char_traits<char> >(0), _M_buf(s, n)
sl@0
   400
{
sl@0
   401
  this->init(&_M_buf);
sl@0
   402
}
sl@0
   403
sl@0
   404
_STLP_EXP_DECLSPEC istrstream::istrstream(const char* s, streamsize n)
sl@0
   405
  : basic_istream<char, char_traits<char> >(0), _M_buf(s, n)
sl@0
   406
{
sl@0
   407
  this->init(&_M_buf);
sl@0
   408
}
sl@0
   409
sl@0
   410
_STLP_EXP_DECLSPEC istrstream::~istrstream() {}
sl@0
   411
sl@0
   412
_STLP_EXP_DECLSPEC strstreambuf* istrstream::rdbuf() const {
sl@0
   413
  return __CONST_CAST(strstreambuf*,&_M_buf);
sl@0
   414
}
sl@0
   415
sl@0
   416
_STLP_EXP_DECLSPEC char* istrstream::str() { return _M_buf.str(); }
sl@0
   417
sl@0
   418
//----------------------------------------------------------------------
sl@0
   419
// Class ostrstream
sl@0
   420
sl@0
   421
_STLP_EXP_DECLSPEC ostrstream::ostrstream()
sl@0
   422
  : basic_ostream<char, char_traits<char> >(0), _M_buf()
sl@0
   423
{
sl@0
   424
  basic_ios<char, char_traits<char> >::init(&_M_buf);
sl@0
   425
}
sl@0
   426
sl@0
   427
_STLP_EXP_DECLSPEC ostrstream::ostrstream(char* s, int n, ios_base::openmode mode)
sl@0
   428
  : basic_ostream<char, char_traits<char> >(0), 
sl@0
   429
    _M_buf(s, n, mode & ios_base::app ? s + strlen(s) : s)
sl@0
   430
{
sl@0
   431
  basic_ios<char, char_traits<char> >::init(&_M_buf);
sl@0
   432
}
sl@0
   433
sl@0
   434
_STLP_EXP_DECLSPEC ostrstream::~ostrstream() {}
sl@0
   435
sl@0
   436
_STLP_EXP_DECLSPEC strstreambuf* ostrstream::rdbuf() const 
sl@0
   437
{
sl@0
   438
  return __CONST_CAST(strstreambuf*,&_M_buf);
sl@0
   439
}
sl@0
   440
sl@0
   441
_STLP_EXP_DECLSPEC void ostrstream::freeze(bool freezeflag)
sl@0
   442
{
sl@0
   443
  _M_buf.freeze(freezeflag);
sl@0
   444
}
sl@0
   445
sl@0
   446
_STLP_EXP_DECLSPEC char* ostrstream::str()
sl@0
   447
{
sl@0
   448
  return _M_buf.str();
sl@0
   449
}
sl@0
   450
sl@0
   451
_STLP_EXP_DECLSPEC int ostrstream::pcount() const
sl@0
   452
{
sl@0
   453
  return _M_buf.pcount();
sl@0
   454
}
sl@0
   455
sl@0
   456
sl@0
   457
//----------------------------------------------------------------------
sl@0
   458
// Class strstream
sl@0
   459
sl@0
   460
_STLP_EXP_DECLSPEC strstream::strstream()
sl@0
   461
  : basic_iostream<char, char_traits<char> >(0), _M_buf()
sl@0
   462
{
sl@0
   463
  basic_ios<char, char_traits<char> >::init(&_M_buf);
sl@0
   464
}
sl@0
   465
sl@0
   466
_STLP_EXP_DECLSPEC strstream::strstream(char* s, int n, ios_base::openmode mode)
sl@0
   467
  : basic_iostream<char, char_traits<char> >(0), 
sl@0
   468
    _M_buf(s, n, mode & ios_base::app ? s + strlen(s) : s)
sl@0
   469
{
sl@0
   470
  basic_ios<char, char_traits<char> >::init(&_M_buf);
sl@0
   471
}
sl@0
   472
  
sl@0
   473
_STLP_EXP_DECLSPEC strstream::~strstream() {}
sl@0
   474
sl@0
   475
_STLP_EXP_DECLSPEC strstreambuf* strstream::rdbuf() const
sl@0
   476
{
sl@0
   477
  return __CONST_CAST(strstreambuf*,&_M_buf);
sl@0
   478
}
sl@0
   479
sl@0
   480
_STLP_EXP_DECLSPEC void strstream::freeze(bool freezeflag)
sl@0
   481
{
sl@0
   482
  _M_buf.freeze(freezeflag);
sl@0
   483
}
sl@0
   484
sl@0
   485
_STLP_EXP_DECLSPEC int strstream::pcount() const
sl@0
   486
{
sl@0
   487
  return _M_buf.pcount();
sl@0
   488
}
sl@0
   489
sl@0
   490
_STLP_EXP_DECLSPEC char* strstream::str()
sl@0
   491
{
sl@0
   492
  return _M_buf.str();
sl@0
   493
}
sl@0
   494
sl@0
   495
_STLP_END_NAMESPACE
sl@0
   496
sl@0
   497
// Local Variables:
sl@0
   498
// mode:C++
sl@0
   499
// End: