亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? istream.h

?? C標準庫源代碼,能提高對C的理解,不錯的哦
?? H
字號:
/***
*istream.h - definitions/declarations for the istream class
*
*       Copyright (c) 1990-1997, Microsoft Corporation.  All rights reserved.
*
*Purpose:
*       This file defines the classes, values, macros, and functions
*       used by the istream class.
*       [AT&T C++]
*
*       [Public]
*
****/

#if _MSC_VER > 1000
#pragma once
#endif  /* _MSC_VER > 1000 */

#ifdef __cplusplus

#ifndef _INC_ISTREAM
#define _INC_ISTREAM

#if !defined (_WIN32) && !defined (_MAC)
#error ERROR: Only Mac or Win32 targets supported!
#endif  /* !defined (_WIN32) && !defined (_MAC) */

#ifndef _CRTBLD
/* This version of the header files is NOT for user programs.
 * It is intended for use when building the C runtimes ONLY.
 * The version intended for public use will not have this message.
 */
#error ERROR: Use of C runtime library internal header file.
#endif  /* _CRTBLD */

#ifdef _MSC_VER
// Currently, all MS C compilers for Win32 platforms default to 8 byte
// alignment.
#pragma pack(push,8)

#include <useoldio.h>

#endif  /* _MSC_VER */

/* Define _CRTIMP */

#ifndef _CRTIMP
#ifdef CRTDLL
#define _CRTIMP __declspec(dllexport)
#else  /* CRTDLL */
#ifdef _DLL
#define _CRTIMP __declspec(dllimport)
#else  /* _DLL */
#define _CRTIMP
#endif  /* _DLL */
#endif  /* CRTDLL */
#endif  /* _CRTIMP */

#ifndef _INTERNAL_IFSTRIP_
/* Define _CRTIMP1 */

#ifndef _CRTIMP1
#ifdef CRTDLL1
#define _CRTIMP1 __declspec(dllexport)
#else  /* CRTDLL1 */
#define _CRTIMP1 _CRTIMP
#endif  /* CRTDLL1 */
#endif  /* _CRTIMP1 */
#endif  /* _INTERNAL_IFSTRIP_ */

#include <ios.h>

#ifdef _MSC_VER
// C4069: "long double != double"
#pragma warning(disable:4069)   // disable C4069 warning
// #pragma warning(default:4069)    // use this to reenable, if desired

// C4514: "unreferenced inline function has been removed"
#pragma warning(disable:4514) // disable C4514 warning
// #pragma warning(default:4514)    // use this to reenable, if desired
#endif  /* _MSC_VER */

#ifndef _INTERNAL_IFSTRIP_
#define MAXLONGSIZ  16
#endif  /* _INTERNAL_IFSTRIP_ */

typedef long streamoff, streampos;

class _CRTIMP1 istream : virtual public ios {

public:
    istream(streambuf*);
    virtual ~istream();

    int  ipfx(int =0);
    void isfx() { unlockbuf(); unlock(); }

    inline istream& operator>>(istream& (__cdecl * _f)(istream&));
    inline istream& operator>>(ios& (__cdecl * _f)(ios&));
    istream& operator>>(char *);
    inline istream& operator>>(unsigned char *);
    inline istream& operator>>(signed char *);
    istream& operator>>(char &);
    inline istream& operator>>(unsigned char &);
    inline istream& operator>>(signed char &);
    istream& operator>>(short &);
    istream& operator>>(unsigned short &);
    istream& operator>>(int &);
    istream& operator>>(unsigned int &);
    istream& operator>>(long &);
    istream& operator>>(unsigned long &);
    istream& operator>>(float &);
    istream& operator>>(double &);
    istream& operator>>(long double &);
    istream& operator>>(streambuf*);

    int get();

    inline istream& get(         char *,int,char ='\n');
    inline istream& get(unsigned char *,int,char ='\n');
    inline istream& get(  signed char *,int,char ='\n');

    istream& get(char &);
    inline istream& get(unsigned char &);
    inline istream& get(  signed char &);

    istream& get(streambuf&,char ='\n');
    inline istream& getline(         char *,int,char ='\n');
    inline istream& getline(unsigned char *,int,char ='\n');
    inline istream& getline(  signed char *,int,char ='\n');

    inline istream& ignore(int =1,int =EOF);
    istream& read(char *,int);
    inline istream& read(unsigned char *,int);
    inline istream& read(signed char *,int);

    int gcount() const { return x_gcount; }
    int peek();
    istream& putback(char);
    int sync();

    istream& seekg(streampos);
    istream& seekg(streamoff,ios::seek_dir);
    streampos tellg();

    void eatwhite();

protected:
    istream();
    istream(const istream&);    // treat as private
    istream& operator=(streambuf* _isb); // treat as private
    istream& operator=(const istream& _is) { return operator=(_is.rdbuf()); }
    istream& get(char *, int, int);
     int do_ipfx(int);

private:
    istream(ios&);
    int getint(char *);
    int getdouble(char *, int);
    int _fGline;
    int x_gcount;
};

    inline istream& istream::operator>>(istream& (__cdecl * _f)(istream&)) { (*_f)(*this); return *this; }
    inline istream& istream::operator>>(ios& (__cdecl * _f)(ios&)) { (*_f)(*this); return *this; }

    inline istream& istream::operator>>(unsigned char * _s) { return operator>>((char *)_s); }
    inline istream& istream::operator>>(  signed char * _s) { return operator>>((char *)_s); }

    inline istream& istream::operator>>(unsigned char & _c) { return operator>>((char &) _c); }
    inline istream& istream::operator>>(  signed char & _c) { return operator>>((char &) _c); }

    inline istream& istream::get(         char * _b, int _lim, char _delim) { return get(        _b, _lim, (int)(unsigned char)_delim); }
    inline istream& istream::get(unsigned char * _b, int _lim, char _delim) { return get((char *)_b, _lim, (int)(unsigned char)_delim); }
    inline istream& istream::get(signed   char * _b, int _lim, char _delim) { return get((char *)_b, _lim, (int)(unsigned char)_delim); }

    inline istream& istream::get(unsigned char & _c) { return get((char &)_c); }
    inline istream& istream::get(  signed char & _c) { return get((char &)_c); }

    inline istream& istream::getline(         char * _b,int _lim,char _delim) { lock(); _fGline++; get(        _b, _lim, (int)(unsigned char)_delim); unlock(); return *this; }
    inline istream& istream::getline(unsigned char * _b,int _lim,char _delim) { lock(); _fGline++; get((char *)_b, _lim, (int)(unsigned char)_delim); unlock(); return *this; }
    inline istream& istream::getline(  signed char * _b,int _lim,char _delim) { lock(); _fGline++; get((char *)_b, _lim, (int)(unsigned char)_delim); unlock(); return *this; }

    inline istream& istream::ignore(int _n,int _delim) { lock(); _fGline++; get((char *)0, _n+1, _delim); unlock(); return *this; }

    inline istream& istream::read(unsigned char * _ptr, int _n) { return read((char *) _ptr, _n); }
    inline istream& istream::read(  signed char * _ptr, int _n) { return read((char *) _ptr, _n); }

class _CRTIMP1 istream_withassign : public istream {
        public:
            istream_withassign();
            istream_withassign(streambuf*);
            ~istream_withassign();
    istream& operator=(const istream& _is) { return istream::operator=(_is); }
    istream& operator=(streambuf* _isb) { return istream::operator=(_isb); }
};

extern _CRTIMP1 istream_withassign cin;

inline _CRTIMP1 istream& __cdecl ws(istream& _ins) { _ins.eatwhite(); return _ins; }

_CRTIMP1 ios&        __cdecl dec(ios&);
_CRTIMP1 ios&        __cdecl hex(ios&);
_CRTIMP1 ios&        __cdecl oct(ios&);

#ifdef _MSC_VER
// Restore default packing
#pragma pack(pop)
#endif  /* _MSC_VER */

#endif  /* _INC_ISTREAM */

#endif  /* __cplusplus */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久免费午夜影院| 欧美tickling网站挠脚心| 欧美一区二区三区电影| 国产精品私房写真福利视频| 亚洲综合一区二区| 国产精品亚洲综合一区在线观看| 欧美亚洲另类激情小说| 精品99一区二区三区| 日韩精品一级中文字幕精品视频免费观看| 国产麻豆精品视频| 3atv在线一区二区三区| 一区二区三区美女| 成人一区二区视频| 欧美videossexotv100| 亚洲成人777| 99久久精品国产导航| 久久久高清一区二区三区| 午夜在线电影亚洲一区| 日本道精品一区二区三区| 国产免费久久精品| 国产激情一区二区三区四区 | 国产校园另类小说区| 日本欧美在线看| 6080午夜不卡| 午夜精品免费在线观看| 欧美日韩三级一区| 一区二区三区欧美| 色屁屁一区二区| 夜夜夜精品看看| 欧美在线制服丝袜| 亚洲va韩国va欧美va| 欧美在线免费观看亚洲| 亚洲欧美视频在线观看| 色呦呦网站一区| 一区二区三区蜜桃| 4438x亚洲最大成人网| 青青草原综合久久大伊人精品优势| 欧美体内she精高潮| 日精品一区二区三区| 欧美一区二区在线免费观看| 日本va欧美va瓶| 欧美精品一区二区三区久久久| 老司机免费视频一区二区| 欧美大片在线观看一区二区| 韩国精品在线观看| 日本一区二区成人在线| 成人免费看的视频| 一区二区三区在线看| 正在播放一区二区| 国产精品一线二线三线| 国产三级三级三级精品8ⅰ区| 成人午夜av电影| 亚洲一级片在线观看| 欧美人与禽zozo性伦| 久久精品国产成人一区二区三区 | 欧美一区二区三区日韩| 六月丁香婷婷久久| 日本一二三不卡| 91国偷自产一区二区三区成为亚洲经典| 亚洲综合自拍偷拍| 日韩欧美一级二级三级久久久| 国产一区91精品张津瑜| 亚洲情趣在线观看| 欧美日本一区二区在线观看| 国产一区二区三区黄视频 | 亚洲卡通欧美制服中文| 91麻豆精品国产91久久久久久| 国产综合色精品一区二区三区| 国产精品视频一二三| 精品视频一区三区九区| 国产一区二区三区日韩| 自拍偷拍亚洲激情| 91精品国产一区二区| 不卡的av中国片| 天堂成人国产精品一区| 欧美激情一区二区三区不卡| 欧美日韩激情在线| 春色校园综合激情亚洲| 日本亚洲视频在线| 中文字幕在线不卡| 欧美不卡在线视频| 精品污污网站免费看| 国产成人亚洲精品青草天美| 亚洲成年人影院| 国产精品三级电影| 精品嫩草影院久久| 91精品视频网| 91色综合久久久久婷婷| 精品一区二区久久久| 亚洲精品欧美在线| 欧美久久一区二区| 国产成人在线免费观看| 丝袜国产日韩另类美女| 国产精品成人一区二区三区夜夜夜| 91精品国产一区二区人妖| 色天天综合久久久久综合片| 国产精品亚洲а∨天堂免在线| 日一区二区三区| 亚洲色欲色欲www| 中文字幕乱码一区二区免费| 欧美va亚洲va在线观看蝴蝶网| 欧美色精品在线视频| 99久久综合狠狠综合久久| 国产露脸91国语对白| 久久精品国产澳门| 日本成人在线电影网| 肉丝袜脚交视频一区二区| 亚洲国产成人高清精品| 亚洲一二三四区不卡| 亚洲日本乱码在线观看| 中文字幕中文乱码欧美一区二区| 久久久亚洲精华液精华液精华液 | av高清久久久| 成人综合婷婷国产精品久久| 国产一区二区三区国产| 国产美女在线精品| 国产一区二区福利视频| 国产一区在线观看视频| 国产毛片精品国产一区二区三区| 久久99久久99| 国产寡妇亲子伦一区二区| 国产剧情一区二区| 国产成人免费在线视频| 成人一区二区视频| 99国产精品久久久久久久久久| 99国产精品一区| 欧美视频一区二区在线观看| 欧美美女一区二区| 日韩欧美国产三级| 国产欧美一区在线| 亚洲欧洲国产专区| 亚洲综合在线电影| 麻豆精品在线观看| 粉嫩aⅴ一区二区三区四区| 99久久精品一区| 精品视频一区三区九区| 精品国产亚洲在线| 国产欧美一区二区精品仙草咪| 中文字幕在线播放不卡一区| 亚洲国产va精品久久久不卡综合| 韩国精品在线观看| xfplay精品久久| 久久久99精品免费观看| 国产精品欧美精品| 亚洲一区在线观看视频| 蜜桃视频第一区免费观看| 国产69精品久久久久毛片| 日本久久电影网| 欧美不卡一区二区三区| 亚洲女同一区二区| 麻豆国产欧美一区二区三区| 丁香另类激情小说| 欧美日韩精品高清| 欧美国产精品中文字幕| 日韩中文字幕麻豆| 成人激情小说乱人伦| 欧美电影在哪看比较好| 欧美激情综合网| 视频一区视频二区中文| 成人av网站大全| 日韩亚洲欧美一区| 亚洲欧洲综合另类在线| 精品亚洲国产成人av制服丝袜| 色欧美日韩亚洲| 国产人成亚洲第一网站在线播放| 调教+趴+乳夹+国产+精品| 不卡av在线免费观看| 日韩欧美精品三级| 一区二区三区四区中文字幕| 国产成a人无v码亚洲福利| 欧美一区二区三区性视频| 亚洲人成电影网站色mp4| 国产精品自拍三区| 3d成人动漫网站| 亚洲国产欧美在线人成| 成人禁用看黄a在线| 精品国产免费久久| 日韩成人精品视频| 一本到高清视频免费精品| 国产欧美一区二区精品忘忧草| 捆绑调教一区二区三区| 欧美日韩一级视频| 一区二区三区欧美亚洲| fc2成人免费人成在线观看播放| 欧美精品一区二区三区高清aⅴ| 午夜精品久久久久久久蜜桃app| www.欧美日韩国产在线| 国产日韩欧美一区二区三区乱码 | 亚洲欧美日本在线| 国产成人精品影视| 2021国产精品久久精品| 蜜桃视频免费观看一区| 欧美一级夜夜爽| 视频一区中文字幕| 欧美一级免费观看| 日韩av电影免费观看高清完整版在线观看| 色94色欧美sute亚洲线路二 | 久久精品人人爽人人爽| 韩国av一区二区| 2022国产精品视频|