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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? stdio.h

?? Keil for ARM.rar
?? H
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/* stdio.h: ANSI 'C' (X3J11 Oct 88) library header, section 4.9 */
/* Copyright (C) Codemist Ltd., 1988-1993                       */
/* Copyright 1991-1998 ARM Limited. All rights reserved.        */

/*
 * RCS $Revision: 1.22.2.3 $
 * Checkin $Date: 2001/05/23 21:56:08 $
 * Revising $Author: sdouglas $
 */

/*
 * stdio.h declares two types, several macros, and many functions for
 * performing input and output. For a discussion on Streams and Files
 * refer to sections 4.9.2 and 4.9.3 in the above ANSI draft, or to a
 * modern textbook on C.
 */

#ifndef __stdio_h
#define __stdio_h

  #ifndef __STDIO_DECLS
  #define __STDIO_DECLS

    #undef __CLIBNS

    #ifdef __cplusplus
      #ifdef __EDG_RUNTIME_USES_NAMESPACES
      namespace std {
          #define __CLIBNS std::
      #else
        #define __CLIBNS ::
      #endif /* ifdef __EDG_RUNTIME_USES_NAMESPACES */

    extern "C" {
    #else
      #define __CLIBNS
    #endif  /* __cplusplus */

    #if defined(__cplusplus) || !defined(__STRICT_ANSI__)
     /* unconditional in C++ and non-strict C for consistency of debug info */
      typedef unsigned int size_t;
    #elif !defined(__size_t)
    #define __size_t 1
      typedef unsigned int size_t;   /* see <stddef.h> */
    #endif

    #undef NULL
    #define NULL 0                   /* see <stddef.h> */

/* ANSI forbids va_list to be defined here */
typedef int *__va_list[1];       /* keep in step with <stdarg.h> */

typedef struct __fpos_t_struct
{ unsigned long __lo;             /* add hi one day */
} fpos_t;
   /*
    * fpos_t is an object capable of recording all information needed to
    * specify uniquely every position within a file.
    */

typedef struct __FILE FILE;
   /*
    * FILE is an object capable of recording all information needed to control
    * a stream, such as its file position indicator, a pointer to its
    * associated buffer, an error indicator that records whether a read/write
    * error has occurred and an end-of-file indicator that records whether the
    * end-of-file has been reached.
    * Its structure is not made known to library clients.
    */

#define _IOFBF           0x100 /* fully buffered IO */
#define _IOLBF           0x200 /* line buffered IO */
#define _IONBF           0x400 /* unbuffered IO */

    /*
     * _IOBIN is the flag passed to _sys_write to denote a binary
     * file.
     */
#define _IOBIN            0x04     /* binary stream */

    /* Various default file IO buffer sizes */
#define BUFSIZ       (512)  /* system buffer size (as used by setbuf) */
#define STDIN_BUFSIZ  (64)  /* default stdin buffer size */
#define STDOUT_BUFSIZ (64)  /* default stdout buffer size */
#define STDERR_BUFSIZ (16)  /* default stderr buffer size */

#define EOF      (-1)
   /*
    * negative integral constant, indicates end-of-file, that is, no more input
    * from a stream.
    */
#define _SYS_OPEN 16
   /* _SYS_OPEN defines a limit on the number of open files that is imposed
    * by this C library
    */
#define FOPEN_MAX _SYS_OPEN
   /*
    * an integral constant expression that is the minimum number of files that
    * this implementation guarantees can be open simultaneously.
    */

#define FILENAME_MAX 80
   /*
    * an integral constant expression that is the size of an array of char
    * large enough to hold the longest filename string
    */
#define L_tmpnam FILENAME_MAX
   /*
    * an integral constant expression that is the size of an array of char
    * large enough to hold a temporary file name string generated by the
    * tmpnam function.
    */

#define SEEK_SET 0 /* start of stream (see fseek) */
#define SEEK_CUR 1 /* current position in stream (see fseek) */
#define SEEK_END 2 /* end of stream (see fseek) */

#define TMP_MAX 256
   /*
    * an integral constant expression that is the minimum number of unique
    * file names that shall be generated by the tmpnam function.
    */

extern FILE __stdin, __stdout, __stderr;

#define stdin  (&__CLIBNS __stdin)
   /* pointer to a FILE object associated with standard input stream */
#define stdout (&__CLIBNS __stdout)
   /* pointer to a FILE object associated with standard output stream */
#define stderr (&__CLIBNS __stderr)
   /* pointer to a FILE object associated with standard error stream */

extern int remove(const char * /*filename*/);
   /*
    * causes the file whose name is the string pointed to by filename to be
    * removed. Subsequent attempts to open the file will fail, unless it is
    * created anew. If the file is open, the behaviour of the remove function
    * is implementation-defined.
    * Returns: zero if the operation succeeds, nonzero if it fails.
    */
extern int rename(const char * /*old*/, const char * /*new*/);
   /*
    * causes the file whose name is the string pointed to by old to be
    * henceforth known by the name given by the string pointed to by new. The
    * file named old is effectively removed. If a file named by the string
    * pointed to by new exists prior to the call of the rename function, the
    * behaviour is implementation-defined.
    * Returns: zero if the operation succeeds, nonzero if it fails, in which
    *          case if the file existed previously it is still known by its
    *          original name.
    */
extern FILE *tmpfile(void);
   /*
    * creates a temporary binary file that will be automatically removed when
    * it is closed or at program termination. The file is opened for update.
    * Returns: a pointer to the stream of the file that it created. If the file
    *          cannot be created, a null pointer is returned.
    */
extern char *tmpnam(char * /*s*/);
   /*
    * generates a string that is not the same as the name of an existing file.
    * The tmpnam function generates a different string each time it is called,
    * up to TMP_MAX times. If it is called more than TMP_MAX times, the
    * behaviour is implementation-defined.
    * Returns: If the argument is a null pointer, the tmpnam function leaves
    *          its result in an internal static object and returns a pointer to
    *          that object. Subsequent calls to the tmpnam function may modify
    *          the same object. if the argument is not a null pointer, it is
    *          assumed to point to an array of at least L_tmpnam characters;
    *          the tmpnam function writes its result in that array and returns
    *          the argument as its value.
    */

extern int fclose(FILE * /*stream*/);
   /*
    * causes the stream pointed to by stream to be flushed and the associated
    * file to be closed. Any unwritten buffered data for the stream are
    * delivered to the host environment to be written to the file; any unread
    * buffered data are discarded. The stream is disassociated from the file.
    * If the associated buffer was automatically allocated, it is deallocated.
    * Returns: zero if the stream was succesfully closed, or nonzero if any
    *          errors were detected or if the stream was already closed.
    */
extern int fflush(FILE * /*stream*/);
   /*
    * If the stream points to an output or update stream in which the most
    * recent operation was output, the fflush function causes any unwritten
    * data for that stream to be delivered to the host environment to be
    * written to the file. If the stream points to an input or update stream,
    * the fflush function undoes the effect of any preceding ungetc operation
    * on the stream.
    * Returns: nonzero if a write error occurs.
    */
extern FILE *fopen(const char * /*filename*/, const char * /*mode*/);
   /*
    * opens the file whose name is the string pointed to by filename, and
    * associates a stream with it.
    * The argument mode points to a string beginning with one of the following
    * sequences:
    * "r"         open text file for reading
    * "w"         create text file for writing, or truncate to zero length
    * "a"         append; open text file or create for writing at eof
    * "rb"        open binary file for reading
    * "wb"        create binary file for writing, or truncate to zero length
    * "ab"        append; open binary file or create for writing at eof
    * "r+"        open text file for update (reading and writing)
    * "w+"        create text file for update, or truncate to zero length
    * "a+"        append; open text file or create for update, writing at eof
    * "r+b"/"rb+" open binary file for update (reading and writing)
    * "w+b"/"wb+" create binary file for update, or truncate to zero length
    * "a+b"/"ab+" append; open binary file or create for update, writing at eof
    *
    * Opening a file with read mode ('r' as the first character in the mode
    * argument) fails if the file does not exist or cannot be read.
    * Opening a file with append mode ('a' as the first character in the mode
    * argument) causes all subsequent writes to be forced to the current end of
    * file, regardless of intervening calls to the fseek function. In some
    * implementations, opening a binary file with append mode ('b' as the
    * second or third character in the mode argument) may initially position
    * the file position indicator beyond the last data written, because of the
    * NUL padding.
    * When a file is opened with update mode ('+' as the second or third
    * character in the mode argument), both input and output may be performed
    * on the associated stream. However, output may not be directly followed
    * by input without an intervening call to the fflush fuction or to a file
    * positioning function (fseek, fsetpos, or rewind), and input be not be
    * directly followed by output without an intervening call to the fflush
    * fuction or to a file positioning function, unless the input operation
    * encounters end-of-file. Opening a file with update mode may open or
    * create a binary stream in some implementations. When opened, a stream
    * is fully buffered if and only if it does not refer to an interactive
    * device. The error and end-of-file indicators for the stream are
    * cleared.
    * Returns: a pointer to the object controlling the stream. If the open
    *          operation fails, fopen returns a null pointer.
    */
extern FILE *freopen(const char * /*filename*/, const char * /*mode*/,
                     FILE * /*stream*/);
   /*
    * opens the file whose name is the string pointed to by filename and
    * associates the stream pointed to by stream with it. The mode argument is
    * used just as in the fopen function.
    * The freopen function first attempts to close any file that is associated
    * with the specified stream. Failure to close the file successfully is
    * ignored. The error and end-of-file indicators for the stream are cleared.
    * Returns: a null pointer if the operation fails. Otherwise, freopen
    *          returns the value of the stream.
    */
extern void setbuf(FILE * /*stream*/, char * /*buf*/);
   /*
    * Except that it returns no value, the setbuf function is equivalent to the
    * setvbuf function invoked with the values _IOFBF for mode and BUFSIZ for
    * size, or (if buf is a null pointer), with the value _IONBF for mode.
    * Returns: no value.
    */
extern int setvbuf(FILE * /*stream*/, char * /*buf*/,
                   int /*mode*/, size_t /*size*/);
   /*
    * may be used after the stream pointed to by stream has been associated
    * with an open file but before it is read or written. The argument mode
    * determines how stream will be buffered, as follows: _IOFBF causes
    * input/output to be fully buffered; _IOLBF causes output to be line
    * buffered (the buffer will be flushed when a new-line character is
    * written, when the buffer is full, or when input is requested); _IONBF
    * causes input/output to be completely unbuffered. If buf is not the null
    * pointer, the array it points to may be used instead of an automatically
    * allocated buffer (the buffer must have a lifetime at least as great as
    * the open stream, so the stream should be closed before a buffer that has
    * automatic storage duration is deallocated upon block exit). The argument
    * size specifies the size of the array. The contents of the array at any
    * time are indeterminate.
    * Returns: zero on success, or nonzero if an invalid value is given for
    *          mode or size, or if the request cannot be honoured.
    */
#ifdef __EDG__
#pragma __printf_args
#else
#pragma check_printf_formats   /* hint to the compiler to check f/s/printf format */
#endif
extern int fprintf(FILE * /*stream*/, const char * /*format*/, ...);
   /*
    * writes output to the stream pointed to by stream, under control of the
    * string pointed to by format that specifies how subsequent arguments are
    * converted for output. If there are insufficient arguments for the format,
    * the behaviour is undefined. If the format is exhausted while arguments
    * remain, the excess arguments are evaluated but otherwise ignored. The
    * fprintf function returns when the end of the format string is reached.
    * The format shall be a multibyte character sequence, beginning and ending
    * in its initial shift state. The format is composed of zero or more
    * directives: ordinary multibyte characters (not %), which are copied
    * unchanged to the output stream; and conversion specifiers, each of which
    * results in fetching zero or more subsequent arguments. Each conversion
    * specification is introduced by the character %. For a description of the
    * available conversion specifiers refer to section 4.9.6.1 in the ANSI
    * draft mentioned at the start of this file or to any modern textbook on C.
    * The minimum value for the maximum number of characters producable by any
    * single conversion is at least 509.
    * Returns: the number of characters transmitted, or a negative value if an
    *          output error occurred.

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
全部av―极品视觉盛宴亚洲| 欧美久久久影院| 成人影视亚洲图片在线| 国产美女主播视频一区| 极品瑜伽女神91| 国产做a爰片久久毛片| 国产永久精品大片wwwapp| 久久国产精品一区二区| 久久66热偷产精品| 国产激情视频一区二区在线观看| 韩国av一区二区三区四区| 国产伦精品一区二区三区在线观看| 国产乱码一区二区三区| 成年人网站91| 色天天综合久久久久综合片| 在线观看91精品国产入口| 欧美三级中文字幕| 日韩欧美中文一区二区| 精品99999| 国产精品久久久久桃色tv| 亚洲色图制服诱惑| 亚洲18影院在线观看| 久久99精品国产麻豆不卡| 国产不卡视频在线观看| 91久久精品一区二区| 91麻豆精品国产91| 久久精品人人做| 自拍偷拍亚洲激情| 日韩黄色免费电影| 国产精品99久久久久久有的能看| 99re免费视频精品全部| 欧美精选一区二区| 国产欧美久久久精品影院| 亚洲欧美二区三区| 免费一区二区视频| 99视频在线观看一区三区| 色偷偷成人一区二区三区91 | 欧美日韩三级一区| 日韩视频免费观看高清完整版| www国产亚洲精品久久麻豆| 国产精品另类一区| 午夜av一区二区三区| 国产精品一区二区在线观看不卡 | 日韩经典一区二区| 成人丝袜18视频在线观看| 欧美亚洲综合网| 欧美精品一区二区不卡 | 久久精品99国产精品日本| 成人丝袜视频网| 91精品欧美久久久久久动漫| 国产精品伦理一区二区| 日日夜夜免费精品| av欧美精品.com| 精品国产亚洲一区二区三区在线观看| 亚洲欧美aⅴ...| 狠狠色综合色综合网络| 欧美网站大全在线观看| 中文字幕国产一区| 蜜桃91丨九色丨蝌蚪91桃色| 97国产精品videossex| 精品国产乱码久久久久久牛牛| 亚洲精品视频在线看| 国产成人三级在线观看| 91精品国产乱| 亚洲午夜一区二区| 97精品电影院| 国产日韩欧美精品一区| 蜜桃av一区二区三区电影| 欧美亚洲尤物久久| 欧美国产日韩在线观看| 精品一区二区三区欧美| 欧美日本一道本在线视频| 亚洲六月丁香色婷婷综合久久 | 欧美一区日本一区韩国一区| 亚洲男人的天堂av| 欧美色欧美亚洲另类二区| 国产亚洲欧洲一区高清在线观看| 日韩电影网1区2区| 欧美性xxxxx极品少妇| 亚洲丝袜精品丝袜在线| 成人免费视频一区| 久久综合九色欧美综合狠狠| 日日夜夜精品视频天天综合网| 色综合色狠狠天天综合色| 国产精品久久久久久一区二区三区| 国内精品久久久久影院一蜜桃| 欧美精品在欧美一区二区少妇| 一区二区三区在线免费视频| 99久久99久久精品免费观看| 国产精品污www在线观看| 国产黄色精品网站| 久久五月婷婷丁香社区| 狠狠色丁香婷婷综合| 欧美成人激情免费网| 久草在线在线精品观看| 日韩一区二区三区三四区视频在线观看| 午夜欧美视频在线观看| 欧美三级日本三级少妇99| 亚洲bt欧美bt精品777| 欧美老女人在线| 日韩成人一区二区| 日韩欧美电影一区| 久久机这里只有精品| 精品国产乱子伦一区| 国产精品一区二区在线观看不卡| 国产欧美日韩三级| 成人av高清在线| 综合欧美亚洲日本| 在线视频国产一区| 亚洲成人精品在线观看| 在线成人av影院| 另类调教123区| 2019国产精品| 粉嫩高潮美女一区二区三区| 国产精品人成在线观看免费| 91社区在线播放| 亚洲一区二区三区四区不卡| 欧美人与z0zoxxxx视频| 免费在线观看不卡| 国产亚洲午夜高清国产拍精品| 成人免费毛片高清视频| 亚洲免费在线电影| 91精品在线免费观看| 久久不见久久见中文字幕免费| 久久久高清一区二区三区| 91影视在线播放| 亚洲成人在线网站| 欧美精品一区二| 日韩精品一区二区三区在线| 国产成人综合网站| 一区二区三区在线视频观看| 欧美一区二区三区四区视频| 国产成人自拍网| 亚洲黄色性网站| 欧美电影精品一区二区| 岛国精品在线播放| 亚洲妇熟xx妇色黄| 久久久久久久久一| 一本大道久久a久久精品综合| 婷婷中文字幕一区三区| 久久久久久久综合| 在线亚洲高清视频| 国产曰批免费观看久久久| 一区二区在线观看视频| 欧美成人vr18sexvr| 99这里只有久久精品视频| 日本欧美肥老太交大片| 国产精品久久久久久久久免费樱桃 | 欧美三级欧美一级| 国产另类ts人妖一区二区| 亚洲精品v日韩精品| 日韩视频免费观看高清完整版| www..com久久爱| 蜜桃一区二区三区四区| 1区2区3区国产精品| 日韩一区二区中文字幕| 高清在线成人网| 婷婷久久综合九色综合伊人色| 国产日本欧洲亚洲| 欧美精品精品一区| 成人av电影在线播放| 久久精品国产一区二区三| 亚洲综合视频网| 亚洲国产精华液网站w| 制服丝袜亚洲色图| 91在线观看污| 国产一区二区精品在线观看| 丝袜亚洲另类欧美综合| 成人免费在线视频观看| 久久久精品国产免大香伊| 在线成人小视频| 中文字幕av一区二区三区免费看| 欧美精品日韩综合在线| 色婷婷综合久色| 国产91在线观看丝袜| 狠狠色狠狠色综合| 日韩中文字幕1| 亚洲欧美一区二区三区国产精品 | 亚洲精品国产品国语在线app| 国产色一区二区| 日韩欧美一区电影| 欧美中文一区二区三区| 97精品国产97久久久久久久久久久久| 国产综合一区二区| 另类欧美日韩国产在线| 婷婷成人激情在线网| 亚洲午夜视频在线| 悠悠色在线精品| 1000精品久久久久久久久| 国产亚洲精品精华液| 精品久久久久久亚洲综合网| 884aa四虎影成人精品一区| 在线免费观看日韩欧美| 91色乱码一区二区三区| voyeur盗摄精品| 成人午夜激情视频| 成人在线视频一区| 国产精品亚洲综合一区在线观看| 韩国一区二区视频| 久久成人av少妇免费|