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

📄 stdio.h

📁 PC_LINT8_w,经过测试
💻 H
字号:
/*  stdio.h --  ANSI header file
    Copyright 1988-90, Gimpel Software, All Rights Reserved
 */

#ifndef __STDIO_H
#define __STDIO_H

#ifndef __SIZE_T
#define __SIZE_T
typedef unsigned size_t;
#endif

#ifndef NULL
#define NULL ((void *) 0)
#endif

typedef long    fpos_t;

typedef struct  {
	long _inside_FILE;
}       FILE;

#define _IOFBF  0
#define _IOLBF  1
#define _IONBF  2

#define EOF (-1)
#define FOPEN_MAX 8
#define FILENAME_MAX 100
#define BUFSIZ  256
#define L_tmpnam    12
#define SEEK_CUR    1
#define SEEK_END    2
#define SEEK_SET    0
#define TMP_MAX     25
extern  FILE    _streams[];

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


void clearerr(FILE *);
int  fclose(FILE *);
int  feof(FILE *);
int  ferror(FILE *);
int  fflush(FILE *);
int  fgetc(FILE *);
int  fgetpos(FILE *, fpos_t *);
char *fgets(char *, int , FILE *);
FILE *fopen(const char *, const char *);
int  fprintf(FILE *, const char *, ...);
int  fputc(int , FILE *);
int  fputs(const char *, FILE *);
size_t fread(void *, size_t , size_t , FILE *);
FILE *freopen(const char *, const char *, FILE *);
int  fscanf(FILE *, const char *, ...);
int  fseek(FILE *, long , int );
int  fsetpos(FILE *, const fpos_t *);
long ftell(FILE *);
size_t fwrite(const void *, size_t , size_t , FILE *);
char *gets(char *);
void perror(const char *);
int  printf(const char *, ...);
int  puts(const char *);
int  remove(const char *);
int  rename(const char *,const char *);
void rewind(FILE *);
int  scanf(const char *, ...);
void setbuf(FILE *, char *);
int  setvbuf(FILE *, char *, int, size_t );
int  sprintf(char *, const char *, ...);
int  sscanf(const char *, const char *, ...);
FILE *tmpfile(void);
char *tmpnam(char *);
int  ungetc(int , FILE *);

int getc(FILE *);
int putc(int, FILE *);
int getchar(void);
int putchar(int);

#ifndef __VA_LIST
#define __VA_LIST
typedef char *va_list;
#endif

int  vfprintf(FILE *, const char *, va_list );
int  vprintf( const char *, va_list );
int  vsprintf(char *,  const char *, va_list );

#endif

⌨️ 快捷键说明

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