📄 main.i
字号:
extern __declspec(__nothrow) int _snprintf(char * __restrict , size_t ,
const char * __restrict , ...);
#pragma __scanf_args
extern __declspec(__nothrow) int fscanf(FILE * __restrict ,
const char * __restrict , ...);
#pragma __scanf_args
extern __declspec(__nothrow) int _fscanf(FILE * __restrict ,
const char * __restrict , ...);
#pragma __scanf_args
extern __declspec(__nothrow) int scanf(const char * __restrict , ...);
#pragma __scanf_args
extern __declspec(__nothrow) int _scanf(const char * __restrict , ...);
#pragma __scanf_args
extern __declspec(__nothrow) int sscanf(const char * __restrict ,
const char * __restrict , ...);
#pragma __scanf_args
extern __declspec(__nothrow) int _sscanf(const char * __restrict ,
const char * __restrict , ...);
extern __declspec(__nothrow) int vfscanf(FILE * __restrict , const char * __restrict , __va_list);
extern __declspec(__nothrow) int vscanf(const char * __restrict , __va_list);
extern __declspec(__nothrow) int vsscanf(const char * __restrict , const char * __restrict , __va_list);
extern __declspec(__nothrow) int _vfscanf(FILE * __restrict , const char * __restrict , __va_list);
extern __declspec(__nothrow) int _vscanf(const char * __restrict , __va_list);
extern __declspec(__nothrow) int _vsscanf(const char * __restrict , const char * __restrict , __va_list);
extern __declspec(__nothrow) int vprintf(const char * __restrict , __va_list );
extern __declspec(__nothrow) int _vprintf(const char * __restrict , __va_list );
extern __declspec(__nothrow) int vfprintf(FILE * __restrict ,
const char * __restrict , __va_list );
extern __declspec(__nothrow) int vsprintf(char * __restrict ,
const char * __restrict , __va_list );
extern __declspec(__nothrow) int vsnprintf(char * __restrict , size_t ,
const char * __restrict , __va_list );
extern __declspec(__nothrow) int _vsprintf(char * __restrict ,
const char * __restrict , __va_list );
extern __declspec(__nothrow) int _vfprintf(FILE * __restrict ,
const char * __restrict , __va_list );
extern __declspec(__nothrow) int _vsnprintf(char * __restrict , size_t ,
const char * __restrict , __va_list );
extern __declspec(__nothrow) int fgetc(FILE * );
extern __declspec(__nothrow) char *fgets(char * __restrict , int ,
FILE * __restrict );
extern __declspec(__nothrow) int fputc(int , FILE * );
extern __declspec(__nothrow) int fputs(const char * __restrict , FILE * __restrict );
extern __declspec(__nothrow) int getc(FILE * );
extern __declspec(__nothrow) int (getchar)(void);
extern __declspec(__nothrow) char *gets(char * );
extern __declspec(__nothrow) int putc(int , FILE * );
extern __declspec(__nothrow) int (putchar)(int );
extern __declspec(__nothrow) int puts(const char * );
extern __declspec(__nothrow) int ungetc(int , FILE * );
extern __declspec(__nothrow) size_t fread(void * __restrict ,
size_t , size_t , FILE * __restrict );
extern __declspec(__nothrow) size_t __fread_bytes_avail(void * __restrict ,
size_t , FILE * __restrict );
extern __declspec(__nothrow) size_t fwrite(const void * __restrict ,
size_t , size_t , FILE * __restrict );
extern __declspec(__nothrow) int fgetpos(FILE * __restrict , fpos_t * __restrict );
extern __declspec(__nothrow) int fseek(FILE * , long int , int );
extern __declspec(__nothrow) int fsetpos(FILE * __restrict , const fpos_t * __restrict );
extern __declspec(__nothrow) long int ftell(FILE * );
extern __declspec(__nothrow) void rewind(FILE * );
extern __declspec(__nothrow) void clearerr(FILE * );
extern __declspec(__nothrow) int feof(FILE * );
extern __declspec(__nothrow) int ferror(FILE * );
extern __declspec(__nothrow) void perror(const char * );
extern __declspec(__nothrow) int _fisatty(FILE * );
extern __declspec(__nothrow) void __use_no_semihosting_swi(void);
extern __declspec(__nothrow) void __use_no_semihosting(void);
#line 934 "C:\\Keil\\ARM\\RV31\\INC\\stdio.h"
#line 8 "global.h"
#line 1 "C:\\Keil\\ARM\\RV31\\INC\\ctype.h"
#line 32 "C:\\Keil\\ARM\\RV31\\INC\\ctype.h"
#line 46 "C:\\Keil\\ARM\\RV31\\INC\\ctype.h"
#line 56 "C:\\Keil\\ARM\\RV31\\INC\\ctype.h"
#line 78 "C:\\Keil\\ARM\\RV31\\INC\\ctype.h"
#line 130 "C:\\Keil\\ARM\\RV31\\INC\\ctype.h"
extern __declspec(__nothrow) __pure unsigned char **__rt_ctype_table(void);
extern int (isalnum)(int );
extern int (isalpha)(int );
extern int (iscntrl)(int );
extern int (isdigit)(int );
extern int (isblank)(int );
extern int (isgraph)(int );
extern int (islower)(int );
extern int (isprint)(int );
extern int (ispunct)(int );
extern int (isspace)(int );
extern int (isupper)(int );
__inline int __isxdigit_helper(int __t) { return (__t ^ (__t << 2)); }
extern int (isxdigit)(int );
extern int tolower(int );
extern int toupper(int );
#line 269 "C:\\Keil\\ARM\\RV31\\INC\\ctype.h"
#line 9 "global.h"
#line 1 "C:\\Keil\\ARM\\RV31\\INC\\stdlib.h"
#line 45 "C:\\Keil\\ARM\\RV31\\INC\\stdlib.h"
typedef unsigned int size_t;
typedef unsigned short wchar_t;
#line 74 "C:\\Keil\\ARM\\RV31\\INC\\stdlib.h"
typedef struct div_t { int quot, rem; } div_t;
typedef struct ldiv_t { long int quot, rem; } ldiv_t;
typedef struct lldiv_t { __int64 quot, rem; } lldiv_t;
#line 95 "C:\\Keil\\ARM\\RV31\\INC\\stdlib.h"
#line 114 "C:\\Keil\\ARM\\RV31\\INC\\stdlib.h"
extern __declspec(__nothrow) int __aeabi_MB_CUR_MAX(void);
extern __declspec(__nothrow) double atof(const char * );
extern __declspec(__nothrow) int atoi(const char * );
extern __declspec(__nothrow) long int atol(const char * );
extern __declspec(__nothrow) __int64 atoll(const char * );
extern __declspec(__nothrow) double strtod(const char * __restrict , char ** __restrict );
extern __declspec(__nothrow) float strtof(const char * __restrict , char ** __restrict );
extern __declspec(__nothrow) long double strtold(const char * __restrict , char ** __restrict );
extern __declspec(__nothrow) long int strtol(const char * __restrict ,
char ** __restrict , int );
extern __declspec(__nothrow) unsigned long int strtoul(const char * __restrict ,
char ** __restrict , int );
extern __declspec(__nothrow) __int64 strtoll(const char * __restrict ,
char ** __restrict , int );
extern __declspec(__nothrow) unsigned __int64 strtoull(const char * __restrict ,
char ** __restrict , int );
extern __declspec(__nothrow) int rand(void);
extern __declspec(__nothrow) void srand(unsigned int );
extern __declspec(__nothrow) void *calloc(size_t , size_t );
extern __declspec(__nothrow) void free(void * );
extern __declspec(__nothrow) void *malloc(size_t );
extern __declspec(__nothrow) void *realloc(void * , size_t );
typedef int (*__heapprt)(void *, char const *, ...);
extern __declspec(__nothrow) void __heapstats(int (* )(void * ,
char const * , ...),
void * );
extern __declspec(__nothrow) int __heapvalid(int (* )(void * ,
char const * , ...),
void * , int );
extern __declspec(__nothrow) __declspec(__noreturn) void abort(void);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -