📄 stdio.h
字号:
/* This is part of the iostream/stdio library, providing -*- C -*- I/O. Define ANSI C stdio on top of C++ iostreams. Copyright (C) 1991 Per Bothner.This library is free software; you can redistribute it and/ormodify it under the terms of the GNU Library General PublicLicense as published by the Free Software Foundation; eitherversion 2 of the License, 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 the GNULibrary 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 FreeSoftware Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.*/#ifndef _STDIO_H#define _STDIO_H#define _STDIO_USES_IOSTREAM#ifndef NULL#define NULL (void*)0#endif#ifndef EOF#define EOF (-1)#endif#ifndef BUFSIZ#define BUFSIZ 1024#endif#define _IOFBF 0 /* Fully buffered. */#define _IOLBF 1 /* Line buffered. */#define _IONBF 2 /* No buffering. */#define SEEK_SET 0#define SEEK_CUR 1#define SEEK_END 2#include <_G_config.h>#ifdef _G_NEED_STDARG_H#include <stdarg.h>#endif /* define size_t. Crud in case <sys/types.h> has defined it. */#if !defined(_SIZE_T) && !defined(_T_SIZE_) && !defined(_T_SIZE)#if !defined(__SIZE_T) && !defined(_SIZE_T_) && !defined(___int_size_t_h)#if !defined(_GCC_SIZE_T) && !defined(_SIZET_)#define _SIZE_T#define _T_SIZE_#define _T_SIZE#define __SIZE_T#define _SIZE_T_#define ___int_size_t_h#define _GCC_SIZE_T#define _SIZET_typedef _G_size_t size_t;#endif#endif#endif#ifndef fpos_t#define fpos_t _G_fpos_t#endif#define FOPEN_MAX _G_FOPEN_MAX#define FILENAME_MAX _G_FILENAME_MAX#define TMP_MAX 999 /* Only limited by filename length */#define L_ctermid 9#define L_cuserid 9#define P_tmpdir "/tmp"#define L_tmpnam 20struct __FILE { /* NOTE: Must match (or be a prefix of) __streambuf! */ int _flags; /* High-order word is _IO_MAGIC; rest is flags. */ char* _gptr; /* Current get pointer */ char* _egptr; /* End of get area. */ char* _eback; /* Start of putback+get area. */ char* _pbase; /* Start of put area. */ char* _pptr; /* Current put pointer. */ char* _epptr; /* End of put area. */ char* _base; /* Start of reserve area. */ char* _ebuf; /* End of reserve area. */ struct streambuf *_chain;};typedef struct __FILE FILE;/* For use by debuggers. These are linked in if printf or fprintf are used. */extern FILE *stdin, *stdout, *stderr;extern struct _fake_filebuf __std_filebuf_0, __std_filebuf_1, __std_filebuf_2;#define stdin ((FILE*)&__std_filebuf_0)#define stdout ((FILE*)&__std_filebuf_1)#define stderr ((FILE*)&__std_filebuf_2)#define getc(fp) \ ((fp)->_gptr >= (fp)->_egptr \ && __underflow((struct streambuf*)(fp)) == EOF ? EOF \ : *(unsigned char*)(fp)->_gptr++)#define putc(c, fp) \ (((fp)->_pptr >= (fp)->_epptr) ? __overflow((struct streambuf*)(fp), (unsigned char)c) \ : (unsigned char)(*(fp)->_pptr++ = c))#define putchar(c) putc(c, stdout)#define getchar() getc(stdin)#ifdef __cplusplusextern "C" {#endif#if defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus)#define _ARGS(args) args#else#define _ARGS(args) ()#endifextern void clearerr _ARGS((FILE*));extern int fclose _ARGS((FILE*));extern int feof _ARGS((FILE*));extern int ferror _ARGS((FILE*));extern int fflush _ARGS((FILE*));extern int fgetc _ARGS((FILE *));extern int fgetpos _ARGS((FILE* fp, fpos_t *pos));extern char* fgets _ARGS((char*, int, FILE*));extern FILE* fopen _ARGS((const char*, const char*));extern int fprintf _ARGS((FILE*, const char* format, ...));extern int fputc _ARGS((int, FILE*));extern int fputs _ARGS((const char *str, FILE *fp));extern size_t fread _ARGS((void*, size_t, size_t, FILE*));extern FILE* freopen _ARGS((const char*, const char*, FILE*));extern int fscanf _ARGS((FILE *fp, const char* format, ...));extern int fseek _ARGS((FILE* fp, long int offset, int whence));extern int fsetpos _ARGS((FILE* fp, const fpos_t *pos));extern long int ftell _ARGS((FILE* fp));extern size_t fwrite _ARGS((const void*, size_t, size_t, FILE*));extern char* gets _ARGS((char*));extern void perror _ARGS((const char *));extern int printf _ARGS((const char* format, ...));extern int puts _ARGS((const char *str));extern int remove _ARGS((const char*));extern int rename _ARGS((const char* _old, const char* _new));extern void rewind _ARGS((FILE*));extern int scanf _ARGS((const char* format, ...));extern void setbuf _ARGS((FILE*, char*));extern void setlinebuf _ARGS((FILE*));extern void setbuffer _ARGS((FILE*, char*, int));extern int setvbuf _ARGS((FILE*, char*, int mode, size_t size));extern int sprintf _ARGS((char*, const char* format, ...));extern int sscanf _ARGS((const char* string, const char* format, ...));extern FILE* tmpfile _ARGS((void));extern char* tmpnam _ARGS((char*));extern int ungetc _ARGS((int c, FILE* fp));extern int vfprintf _ARGS((FILE *fp, char const *fmt0, _G_va_list));extern int vprintf _ARGS((char const *fmt, _G_va_list));extern int vsprintf _ARGS((char* string, const char* format, _G_va_list));#if !defined(__STRICT_ANSI__) || defined(_POSIX_SOURCE)extern FILE *fdopen _ARGS((int, const char *));extern int fileno _ARGS((FILE*));extern FILE* popen _ARGS((const char*, const char*));extern int pclose _ARGS((FILE*));#endifextern int __underflow _ARGS((struct streambuf*));extern int __overflow _ARGS((struct streambuf*, int));#ifdef __cplusplus}#endif#endif /*!_STDIO_H*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -