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

📄 streambuf.cc

📁 早期freebsd实现
💻 CC
字号:
/* Copyright (C) 1990 Free Software Foundation    written by Doug Lea (dl@rocky.oswego.edu)This file is part of the GNU C++ Library.  This library is freesoftware; you can redistribute it and/or modify it under the terms ofthe GNU Library General Public License as published by the FreeSoftware Foundation; either version 2 of the License, or (at youroption) any later version.  This library is distributed in the hopethat it will be useful, but WITHOUT ANY WARRANTY; without even theimplied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULARPURPOSE.  See the GNU Library General Public License for more details.You should have received a copy of the GNU Library General PublicLicense along with this library; if not, write to the Free SoftwareFoundation, 675 Mass Ave, Cambridge, MA 02139, USA.*/#ifdef __GNUG__#pragma implementation#endif#include <streambuf.h>streambuf::streambuf()     :base(0), gptr(0), pptr(0), eptr(0), alloc(0){}streambuf::streambuf(char* buf, int buflen)     : base(buf), gptr(buf), pptr(buf), eptr(buf+buflen-1), alloc(0){}streambuf::~streambuf(){  if (alloc && (base != 0)) delete base;}int streambuf::doallocate(){  if (alloc && base != 0) delete base;  base = new char[BUFSIZ];  gptr = pptr = base;  eptr = base + BUFSIZ - 1;  alloc = 1;  return BUFSIZ;}streambuf* streambuf::setbuf(char* buf, int buflen, int preloaded_count){  if (alloc && (base != 0)) delete base;  alloc = 0;  base = gptr = buf;  pptr = base + preloaded_count;  eptr = base + buflen - 1;  return this;}const char* streambuf::name(){  return 0;}int streambuf::overflow(int c){  if (base == 0) allocate();  return (c == EOF)? c : ((pptr <= eptr)? (*pptr++ = (char)(c)) : EOF);}int streambuf::underflow(){  return EOF;}int streambuf::sputs(const char* s){  if (s != 0)  {    for(; *s != 0; ++s)    {      if (must_overflow(*s)) { if (overflow(*s) == EOF) return EOF; }      else *pptr++ = *s;    }  }  return 0;}int streambuf::sputsn(const char* s, int len){  for(; --len >= 0; ++s)  {    if (must_overflow(*s)) { if (overflow(*s) == EOF) return EOF; }      else *pptr++ = *s;  }  return 0;}int streambuf::is_open(){  return 1;}int streambuf::close(){  return 1;}void streambuf::error(){  abort();}streambuf* streambuf::open(const char*, open_mode){  return 0;}streambuf* streambuf::open(const char*, io_mode, access_mode){  return 0;}streambuf* streambuf::open(const char*, const char*){  return 0;}streambuf* streambuf::open(int, io_mode){  return 0;}streambuf* streambuf::open(FILE*){  return 0;}

⌨️ 快捷键说明

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