⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strstream.cpp

📁 vxworks源码源码解读是学习vxworks的最佳途径
💻 CPP
字号:
/* This has been copied from the gnu source tree *//* Make all changes there, not here! */#ifdef __cplusplusextern "C" {#endif#ifndef _N_char __strstream_o = 0;#elsechar _N_ = 0;#endif#ifdef __cplusplus}#endif#include "vxWorks.h"/* This is part of libio/iostream, providing -*- C++ -*- input/output.Copyright (C) 1993 Free Software FoundationThis file is part of the GNU IO Library.  This library is freesoftware; you can redistribute it and/or modify it under theterms of the GNU General Public License as published by theFree Software Foundation; either version 2, or (at your option)any later version.This library is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this library; see the file COPYING.  If not, write to the FreeSoftware Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.As a special exception, if you link this library with filescompiled with a GNU compiler to produce an executable, this does not causethe resulting executable to be covered by the GNU General Public License.This exception does not however invalidate any other reasons whythe executable file might be covered by the GNU General Public License. *//* Written by Per Bothner (bothner@cygnus.com). */#ifdef __GNUG__#pragma implementation#endif#include "iostreamP.h"#include "strstream.h"#include <string.h>/* We replace new by new (nothrow) when exceptions aren't turned on */#ifndef _IO_THROW#include <new>#endifstatic void* default_alloc(_IO_size_t size){    return (void*)new char[size];}static void default_free(void* ptr){    delete [] (char*)ptr;}istrstream::istrstream(const char *cp, int n){  __my_sb.init_readonly (cp, n);}strstreambase::strstreambase(char *cp, int n, int mode): __my_sb (cp, n,	   (mode == ios::app || mode == ios::ate) ? cp + strlen(cp) : cp){  init (&__my_sb);}char *strstreambuf::str(){    freeze(1);    return base();}_IO_ssize_t strstreambuf::pcount () { return _IO_write_ptr - _IO_write_base; }int strstreambuf::overflow(int c /* = EOF */){  return _IO_str_overflow (this, c);}int strstreambuf::underflow(){  return _IO_str_underflow(this);}void strstreambuf::init_dynamic(_IO_alloc_type alloc, _IO_free_type free,				int initial_size)				{    _s._allocate_buffer = alloc ? alloc : default_alloc;    _s._free_buffer = free ? free : default_free;    if (initial_size > 0)      {	char * buf = (char*)(*_s._allocate_buffer)(initial_size);	setb(buf, buf + initial_size, 1);	setp(buf, buf + initial_size);	setg(buf, buf, buf);      }}void strstreambuf::init_static(char *ptr, int size, char *pstart){  _IO_str_init_static (this, ptr, size, pstart);}void strstreambuf::init_readonly (const char *ptr, int size){  _IO_str_init_readonly (this, ptr, size);}strstreambuf::~strstreambuf(){    if (_IO_buf_base && !(_flags & _IO_USER_BUF))        (_s._free_buffer)(_IO_buf_base);    _IO_buf_base = NULL;}streampos strstreambuf::seekoff(streamoff off, _seek_dir dir,					int mode /*=ios::in|ios::out*/){  return _IO_str_seekoff (this, off, dir, mode);}int strstreambuf::pbackfail(int c){  return _IO_str_pbackfail (this, c);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -