青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

stdio.h文件學習!

Posted on 2007-12-12 15:36 T.S Liu 閱讀(1030) 評論(0)  編輯 收藏 引用

/***
*stdio.h - definitions/declarations for standard I/O routines
*
*       Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
*       This file defines the structures, values, macros, and functions
*       used by the level 2 I/O ("standard I/O") routines.
*       [ANSI/System V]
*
*       [Public]
*
****/


#if     _MSC_VER > 1000
#pragma once
#endif

#ifndef _INC_STDIO
#define _INC_STDIO

#
if     !defined(_WIN32)
#
error ERROR: Only Win32 target supported!
#endif


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

#ifdef  __cplusplus
extern 
"C" {
#endif


#
if !defined(_W64)
#
if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300
#define _W64 __w64
#
else
#define _W64
#endif
#endif

/* Define _CRTIMP */

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


/* Define __cdecl for non-Microsoft compilers */

#
if     ( !defined(_MSC_VER) && !defined(__cdecl) )
#define __cdecl
#endif


#ifndef _SIZE_T_DEFINED
#ifdef  _WIN64
typedef unsigned __int64    size_t;
#
else
typedef _W64 unsigned 
int   size_t;
#endif
#define _SIZE_T_DEFINED
#endif


#ifndef _WCHAR_T_DEFINED
typedef unsigned short wchar_t;
#define _WCHAR_T_DEFINED
#endif


#ifndef _WCTYPE_T_DEFINED
typedef unsigned short wint_t;
typedef unsigned short wctype_t;
#define _WCTYPE_T_DEFINED
#endif


#ifndef _VA_LIST_DEFINED
#ifdef  _M_ALPHA
typedef struct {
        char 
*a0;       /* pointer to first homed integer argument */
        
int offset;     /* byte offset of next parameter */
} va_list;
#
else
typedef char 
*  va_list;
#endif
#define _VA_LIST_DEFINED
#endif


/* Buffered I/O macros */

#define BUFSIZ  
512


/*
 
* Default number of supported streams. _NFILE is confusing and obsolete, but
 
* supported anyway for backwards compatibility.
 
*/
#define _NFILE      _NSTREAM_

#define _NSTREAM_   
512

/*
 
* Number of entries in _iob[] (declared below). Note that _NSTREAM_ must be
 
* greater than or equal to _IOB_ENTRIES.
 
*/
#define _IOB_ENTRIES 
20

#define EOF     (
-1)


#ifndef _FILE_DEFINED
struct _iobuf {
        char 
*_ptr;
        
int   _cnt;
        char 
*_base;
        
int   _flag;
        
int   _file;
        
int   _charbuf;
        
int   _bufsiz;
        char 
*_tmpfname;
        };
typedef struct _iobuf FILE;
#define _FILE_DEFINED
#endif


/* Directory where temporary files may be created. */

#ifdef  _POSIX_
#define _P_tmpdir   
"/"
#define _wP_tmpdir  L
"/"
#
else
#define _P_tmpdir   
"\\"
#define _wP_tmpdir  L
"\\"
#endif

/* L_tmpnam = length of string _P_tmpdir
 
*            + 1 if _P_tmpdir does not end in "/" or "\"else 0
 
*            + 12 (for the filename string)
 
*            + 1 (for the null terminator)
 
*/
#define L_tmpnam sizeof(_P_tmpdir)
+12


#ifdef  _POSIX_
#define L_ctermid   
9
#define L_cuserid   
32
#endif


/* Seek method constants */

#define SEEK_CUR    
1
#define SEEK_END    
2
#define SEEK_SET    
0


#define FILENAME_MAX    
260
#define FOPEN_MAX       
20
#define _SYS_OPEN       
20
#define TMP_MAX         
32767


/* Define NULL pointer value */

#ifndef 
NULL
#ifdef  __cplusplus
#define 
NULL    0
#
else
#define 
NULL    ((void *)0)
#endif
#endif


/* Declare _iob[] array */

#ifndef _STDIO_DEFINED
_CRTIMP extern FILE _iob[];
#endif  
/* _STDIO_DEFINED */


/* Define file position type */

#ifndef _FPOS_T_DEFINED
#undef _FPOSOFF

#
if     defined (_POSIX_)
typedef 
long fpos_t;
#define _FPOSOFF(fp) ((
long)(fp))
#
else   /* _POSIX_ */

#
if     !__STDC__ && _INTEGRAL_MAX_BITS >= 64
typedef __int64 fpos_t;
#define _FPOSOFF(fp) ((
long)(fp))
#
else
typedef struct fpos_t {
        unsigned 
int lopart;
        
int          hipart;
        } fpos_t;
#define _FPOSOFF(fp) ((
long)(fp).lopart)
#endif
#endif  
/* _POSIX_ */

#define _FPOS_T_DEFINED
#endif


#define stdin  (
&_iob[0])
#define stdout (
&_iob[1])
#define stderr (
&_iob[2])


#define _IOREAD         0x0001
#define _IOWRT          0x0002

#define _IOFBF          0x0000
#define _IOLBF          0x0040
#define _IONBF          0x0004

#define _IOMYBUF        0x0008
#define _IOEOF          0x0010
#define _IOERR          0x0020
#define _IOSTRG         0x0040
#define _IORW           0x0080
#ifdef  _POSIX_
#define _IOAPPEND       0x0200
#endif


/* Function prototypes */

#ifndef _STDIO_DEFINED

_CRTIMP 
int __cdecl _filbuf(FILE *);
_CRTIMP 
int __cdecl _flsbuf(int, FILE *);

#ifdef  _POSIX_
_CRTIMP FILE 
* __cdecl _fsopen(const char *const char *);
#
else
_CRTIMP FILE 
* __cdecl _fsopen(const char *const char *int);
#endif

_CRTIMP void __cdecl clearerr(FILE 
*);
_CRTIMP 
int __cdecl fclose(FILE *);
_CRTIMP 
int __cdecl _fcloseall(void);

#ifdef  _POSIX_
_CRTIMP FILE 
* __cdecl fdopen(intconst char *);
#
else
_CRTIMP FILE 
* __cdecl _fdopen(intconst char *);
#endif

_CRTIMP 
int __cdecl feof(FILE *);
_CRTIMP 
int __cdecl ferror(FILE *);
_CRTIMP 
int __cdecl fflush(FILE *);
_CRTIMP 
int __cdecl fgetc(FILE *);
_CRTIMP 
int __cdecl _fgetchar(void);
_CRTIMP 
int __cdecl fgetpos(FILE *, fpos_t *);
_CRTIMP char 
* __cdecl fgets(char *int, FILE *);

#ifdef  _POSIX_
_CRTIMP 
int __cdecl fileno(FILE *);
#
else
_CRTIMP 
int __cdecl _fileno(FILE *);
#endif

_CRTIMP 
int __cdecl _flushall(void);
_CRTIMP FILE 
* __cdecl fopen(const char *const char *);
_CRTIMP 
int __cdecl fprintf(FILE *const char *);
_CRTIMP 
int __cdecl fputc(int, FILE *);
_CRTIMP 
int __cdecl _fputchar(int);
_CRTIMP 
int __cdecl fputs(const char *, FILE *);
_CRTIMP size_t __cdecl fread(void 
*, size_t, size_t, FILE *);
_CRTIMP FILE 
* __cdecl freopen(const char *const char *, FILE *);
_CRTIMP 
int __cdecl fscanf(FILE *const char *);
_CRTIMP 
int __cdecl fsetpos(FILE *const fpos_t *);
_CRTIMP 
int __cdecl fseek(FILE *longint);
_CRTIMP 
long __cdecl ftell(FILE *);
_CRTIMP size_t __cdecl fwrite(
const void *, size_t, size_t, FILE *);
_CRTIMP 
int __cdecl getc(FILE *);
_CRTIMP 
int __cdecl getchar(void);
_CRTIMP 
int __cdecl _getmaxstdio(void);
_CRTIMP char 
* __cdecl gets(char *);
_CRTIMP 
int __cdecl _getw(FILE *);
_CRTIMP void __cdecl perror(
const char *);
_CRTIMP 
int __cdecl _pclose(FILE *);
_CRTIMP FILE 
* __cdecl _popen(const char *const char *);
_CRTIMP 
int __cdecl printf(const char *);
_CRTIMP 
int __cdecl putc(int, FILE *);
_CRTIMP 
int __cdecl putchar(int);
_CRTIMP 
int __cdecl puts(const char *);
_CRTIMP 
int __cdecl _putw(int, FILE *);
_CRTIMP 
int __cdecl remove(const char *);
_CRTIMP 
int __cdecl rename(const char *const char *);
_CRTIMP void __cdecl rewind(FILE 
*);
_CRTIMP 
int __cdecl _rmtmp(void);
_CRTIMP 
int __cdecl scanf(const char *);
_CRTIMP void __cdecl setbuf(FILE 
*, char *);
_CRTIMP 
int __cdecl _setmaxstdio(int);
_CRTIMP 
int __cdecl setvbuf(FILE *, char *int, size_t);
_CRTIMP 
int __cdecl _snprintf(char *, size_t, const char *);
_CRTIMP 
int __cdecl sprintf(char *const char *);
_CRTIMP 
int __cdecl _scprintf(const char *);
_CRTIMP 
int __cdecl sscanf(const char *const char *);
_CRTIMP 
int __cdecl _snscanf(const char *, size_t, const char *);
_CRTIMP char 
* __cdecl _tempnam(const char *const char *);
_CRTIMP FILE 
* __cdecl tmpfile(void);
_CRTIMP char 
* __cdecl tmpnam(char *);
_CRTIMP 
int __cdecl ungetc(int, FILE *);
_CRTIMP 
int __cdecl _unlink(const char *);
_CRTIMP 
int __cdecl vfprintf(FILE *const char *, va_list);
_CRTIMP 
int __cdecl vprintf(const char *, va_list);
_CRTIMP 
int __cdecl _vsnprintf(char *, size_t, const char *, va_list);
_CRTIMP 
int __cdecl vsprintf(char *const char *, va_list);
_CRTIMP 
int __cdecl _vscprintf(const char *, va_list);

#ifndef _WSTDIO_DEFINED

/* wide function prototypes, also declared in wchar.h  */

#ifndef WEOF
#define WEOF (wint_t)(0xFFFF)
#endif

#ifdef  _POSIX_
_CRTIMP FILE 
* __cdecl _wfsopen(const wchar_t *const wchar_t *);
#
else
_CRTIMP FILE 
* __cdecl _wfsopen(const wchar_t *const wchar_t *int);
#endif

_CRTIMP wint_t __cdecl fgetwc(FILE 
*);
_CRTIMP wint_t __cdecl _fgetwchar(void);
_CRTIMP wint_t __cdecl fputwc(wchar_t, FILE 
*);
_CRTIMP wint_t __cdecl _fputwchar(wchar_t);
_CRTIMP wint_t __cdecl getwc(FILE 
*);
_CRTIMP wint_t __cdecl getwchar(void);
_CRTIMP wint_t __cdecl putwc(wchar_t, FILE 
*);
_CRTIMP wint_t __cdecl putwchar(wchar_t);
_CRTIMP wint_t __cdecl ungetwc(wint_t, FILE 
*);

_CRTIMP wchar_t 
* __cdecl fgetws(wchar_t *int, FILE *);
_CRTIMP 
int __cdecl fputws(const wchar_t *, FILE *);
_CRTIMP wchar_t 
* __cdecl _getws(wchar_t *);
_CRTIMP 
int __cdecl _putws(const wchar_t *);

_CRTIMP 
int __cdecl fwprintf(FILE *const wchar_t *);
_CRTIMP 
int __cdecl wprintf(const wchar_t *);
_CRTIMP 
int __cdecl _snwprintf(wchar_t *, size_t, const wchar_t *);
/* This non-standard definition exists for historical reasons to avoid breaking old code */
_CRTIMP 
int __cdecl swprintf(wchar_t *const wchar_t *);
#ifdef  __cplusplus
/* For C++ we have an overloaded version with the standard definition */
extern 
"C++" _CRTIMP int __cdecl swprintf(wchar_t *, size_t, const wchar_t *);
#endif
_CRTIMP 
int __cdecl _scwprintf(const wchar_t *);
_CRTIMP 
int __cdecl vfwprintf(FILE *const wchar_t *, va_list);
_CRTIMP 
int __cdecl vwprintf(const wchar_t *, va_list);
_CRTIMP 
int __cdecl _vsnwprintf(wchar_t *, size_t, const wchar_t *, va_list);
/* This non-standard definition exists for historical reasons to avoid breaking old code */
_CRTIMP 
int __cdecl vswprintf(wchar_t *const wchar_t *, va_list);
#ifdef  __cplusplus
/* For C++ we have an overloaded version with the standard definition */
extern 
"C++" _CRTIMP int __cdecl vswprintf(wchar_t *, size_t, const wchar_t *, va_list);
#endif
_CRTIMP 
int __cdecl _vscwprintf(const wchar_t *, va_list);
_CRTIMP 
int __cdecl fwscanf(FILE *const wchar_t *);
_CRTIMP 
int __cdecl swscanf(const wchar_t *const wchar_t *);
_CRTIMP 
int __cdecl _snwscanf(const wchar_t *, size_t, const wchar_t *);
_CRTIMP 
int __cdecl wscanf(const wchar_t *);

#define getwchar()              fgetwc(stdin)
#define putwchar(_c)            fputwc((_c),stdout)
#define getwc(_stm)             fgetwc(_stm)
#define putwc(_c,_stm)          fputwc(_c,_stm)

_CRTIMP FILE 
* __cdecl _wfdopen(intconst wchar_t *);
_CRTIMP FILE 
* __cdecl _wfopen(const wchar_t *const wchar_t *);
_CRTIMP FILE 
* __cdecl _wfreopen(const wchar_t *const wchar_t *, FILE *);
_CRTIMP void __cdecl _wperror(
const wchar_t *);
_CRTIMP FILE 
* __cdecl _wpopen(const wchar_t *const wchar_t *);
_CRTIMP 
int __cdecl _wremove(const wchar_t *);
_CRTIMP wchar_t 
* __cdecl _wtempnam(const wchar_t *const wchar_t *);
_CRTIMP wchar_t 
* __cdecl _wtmpnam(wchar_t *);


#define _WSTDIO_DEFINED
#endif  
/* _WSTDIO_DEFINED */

#define _STDIO_DEFINED
#endif  
/* _STDIO_DEFINED */


/* Macro definitions */

#define feof(_stream)     ((_stream)
->_flag & _IOEOF)
#define ferror(_stream)   ((_stream)
->_flag & _IOERR)
#define _fileno(_stream)  ((_stream)
->_file)
#define getc(_stream)     (
--(_stream)->_cnt >= 0 \
                ? 0xff 
& *(_stream)->_ptr++ : _filbuf(_stream))
#define putc(_c,_stream)  (
--(_stream)->_cnt >= 0 \
                ? 0xff 
& (*(_stream)->_ptr++ = (char)(_c)) :  _flsbuf((_c),(_stream)))
#define getchar()         getc(stdin)
#define putchar(_c)       putc((_c),stdout)



#ifdef  _MT
#undef  getc
#undef  putc
#undef  getchar
#undef  putchar
#endif



#
if     !__STDC__ && !defined(_POSIX_)

/* Non-ANSI names for compatibility */

#define P_tmpdir  _P_tmpdir
#define SYS_OPEN  _SYS_OPEN

_CRTIMP 
int __cdecl fcloseall(void);
_CRTIMP FILE 
* __cdecl fdopen(intconst char *);
_CRTIMP 
int __cdecl fgetchar(void);
_CRTIMP 
int __cdecl fileno(FILE *);
_CRTIMP 
int __cdecl flushall(void);
_CRTIMP 
int __cdecl fputchar(int);
_CRTIMP 
int __cdecl getw(FILE *);
_CRTIMP 
int __cdecl putw(int, FILE *);
_CRTIMP 
int __cdecl rmtmp(void);
_CRTIMP char 
* __cdecl tempnam(const char *const char *);
_CRTIMP 
int __cdecl unlink(const char *);

#endif  
/* __STDC__ */

#ifdef  __cplusplus
}
#endif

#ifdef  _MSC_VER
#pragma pack(pop)
#endif  
/* _MSC_VER */

#endif  
/* _INC_STDIO */


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美日韩亚洲一区二| 国产精品自拍小视频| 亚洲国产精品久久精品怡红院| 欧美在线关看| 久久国产欧美精品| 在线观看国产欧美| 亚洲国产精品久久精品怡红院| 女生裸体视频一区二区三区| 亚洲精一区二区三区| 日韩视频一区二区三区在线播放免费观看 | 欧美在线一级视频| 欧美影院在线播放| 亚洲激情亚洲| 亚洲性色视频| 亚洲大胆视频| 一区二区三区高清在线观看| 国产一区二区三区四区hd| 蜜臀av性久久久久蜜臀aⅴ| 欧美成人综合| 久久成人18免费观看| 久久精品99国产精品日本| 亚洲精选在线| 欧美一区二区三区免费观看视频| 亚洲第一视频网站| 一区二区三区精品| 亚洲国产成人久久综合| 日韩视频在线观看一区二区| 国产一区清纯| 亚洲国产一区二区三区高清| 欧美三级韩国三级日本三斤| 久久综合久久综合这里只有精品 | 这里只有精品丝袜| 精品999日本| 亚洲一区二区三区欧美| 亚洲大胆在线| 欧美一级二区| 亚洲欧美中文字幕| 欧美顶级艳妇交换群宴| 久久久午夜视频| 欧美日韩在线综合| 欧美高清影院| 激情成人综合| 性欧美8khd高清极品| 一区二区三区回区在观看免费视频| 欧美在线国产精品| 亚洲伊人久久综合| 欧美日本在线看| 亚洲第一狼人社区| 激情文学一区| 欧美在线网站| 欧美在线视频日韩| 国产精品va在线播放| 亚洲精品中文在线| 亚洲美女av电影| 久久人人爽国产| 久久蜜桃av一区精品变态类天堂| 欧美午夜视频| 在线视频一区二区| 一区二区欧美日韩| 欧美日韩岛国| 亚洲精品美女免费| 亚洲欧洲一级| 欧美极品欧美精品欧美视频| 欧美福利视频网站| 91久久国产精品91久久性色| 久久九九国产精品| 久久亚洲二区| 亚洲二区视频| 欧美国产激情| 日韩视频一区二区三区在线播放免费观看| 91久久国产综合久久蜜月精品 | 亚洲日本欧美| av成人免费在线| 欧美日韩免费一区二区三区视频 | 狂野欧美激情性xxxx欧美| 国产亚洲aⅴaaaaaa毛片| 欧美一区二区三区啪啪| 久久久久一区二区三区| 狠狠色综合播放一区二区| 久久久99免费视频| 欧美激情一区二区三级高清视频| 亚洲日本va午夜在线影院| 欧美金8天国| 中文精品99久久国产香蕉| 性欧美1819sex性高清| 国产一区二区三区免费不卡| 久久久在线视频| 亚洲全黄一级网站| 亚洲视频久久| 国产无一区二区| 免费不卡亚洲欧美| 亚洲免费观看高清完整版在线观看熊 | 亚洲东热激情| 欧美日韩亚洲免费| 午夜视频一区在线观看| 欧美刺激性大交免费视频| 9国产精品视频| 国产亚洲va综合人人澡精品| 欧美1区3d| 亚洲自拍偷拍网址| 亚洲第一伊人| 欧美在线欧美在线| 亚洲欧洲另类国产综合| 欧美性猛片xxxx免费看久爱 | 亚洲精品视频一区| 欧美一区二区三区在| 亚洲区一区二| 国产日韩欧美黄色| 欧美久久电影| 久久久7777| 亚洲伊人观看| 亚洲国产精品一区二区www| 性伦欧美刺激片在线观看| 亚洲精品国产系列| 国内精品视频666| 欧美日韩一二三区| 久久综合九色综合欧美就去吻| 日韩一级精品视频在线观看| 免费在线观看精品| 欧美亚洲综合网| a4yy欧美一区二区三区| 激情久久五月| 国产日韩精品入口| 欧美日韩一区二区三区视频| 另类亚洲自拍| 久久成人精品一区二区三区| 在线亚洲一区| 99视频一区二区| 亚洲区国产区| 亚洲国产精品一区二区三区| 久久久久久噜噜噜久久久精品| 亚洲在线免费| 亚洲男人av电影| 99国产精品国产精品毛片| 欧美 日韩 国产精品免费观看| 欧美在线观看网址综合| 亚洲午夜国产成人av电影男同| 亚洲国内精品在线| 亚洲国产91色在线| 亚洲国产日韩欧美在线图片| 一区二区亚洲| 在线看无码的免费网站| 激情久久综艺| 在线观看欧美视频| 亚洲大胆视频| 亚洲精品日韩在线观看| 亚洲激情电影中文字幕| 91久久久亚洲精品| 亚洲精品欧美在线| 亚洲精品一区二区三区在线观看| 亚洲国产欧美日韩精品| 亚洲高清久久网| 亚洲精品中文字幕有码专区| 亚洲日本中文字幕区 | 欧美日韩国产一区精品一区| 欧美激情一区在线| 欧美日韩三级一区二区| 欧美午夜精品久久久久久浪潮| 欧美午夜国产| 国产午夜精品久久久久久久| 一区二区三区亚洲| 亚洲国产视频直播| 99热这里只有成人精品国产| 亚洲深夜福利视频| 午夜电影亚洲| 久久综合精品一区| 亚洲黄色成人久久久| 亚洲免费观看视频| 亚洲欧美视频| 老妇喷水一区二区三区| 欧美日本国产一区| 国产视频观看一区| 亚洲三级视频| 亚洲欧美日韩国产综合精品二区| 久久经典综合| 亚洲激情网址| 午夜精品久久久| 欧美肥婆在线| 国产一区二区剧情av在线| 亚洲国产三级网| 欧美亚洲日本一区| 欧美成人性生活| 亚洲一区在线直播| 免费精品视频| 国产欧美日韩高清| 亚洲精品视频一区| 久久成人免费网| 亚洲卡通欧美制服中文| 欧美在线观看一区二区| 欧美日韩一区二区三区在线| 黄色av日韩| 亚洲欧美在线一区| 欧美激情视频一区二区三区不卡| 亚洲伊人第一页| 欧美激情第3页| 在线观看亚洲a| 欧美在线免费视频| 一本久久综合亚洲鲁鲁| 欧美成人免费网| 在线免费观看日本欧美|