📄 drvebi.i
字号:
#line 1 "..\\Lib\\Src\\Driver\\DrvEBI.c"
#line 1 "C:\\Keil\\ARM\\RV31\\INC\\stdio.h"
#line 34 "C:\\Keil\\ARM\\RV31\\INC\\stdio.h"
typedef unsigned int size_t;
typedef struct __va_list __va_list;
typedef struct __fpos_t_struct {
unsigned __int64 __pos;
struct {
unsigned int __state1, __state2;
} __mbstate;
} fpos_t;
typedef struct __FILE FILE;
extern FILE __stdin, __stdout, __stderr;
extern FILE *__aeabi_stdin, *__aeabi_stdout, *__aeabi_stderr;
#line 125 "C:\\Keil\\ARM\\RV31\\INC\\stdio.h"
extern __declspec(__nothrow) int remove(const char * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int rename(const char * , const char * ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) FILE *tmpfile(void);
extern __declspec(__nothrow) char *tmpnam(char * );
extern __declspec(__nothrow) int fclose(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int fflush(FILE * );
extern __declspec(__nothrow) FILE *fopen(const char * __restrict ,
const char * __restrict ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) FILE *freopen(const char * __restrict ,
const char * __restrict ,
FILE * __restrict ) __attribute__((__nonnull__(2,3)));
extern __declspec(__nothrow) void setbuf(FILE * __restrict ,
char * __restrict ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int setvbuf(FILE * __restrict ,
char * __restrict ,
int , size_t ) __attribute__((__nonnull__(1)));
#pragma __printf_args
extern __declspec(__nothrow) int fprintf(FILE * __restrict ,
const char * __restrict , ...) __attribute__((__nonnull__(1,2)));
#pragma __printf_args
extern __declspec(__nothrow) int _fprintf(FILE * __restrict ,
const char * __restrict , ...) __attribute__((__nonnull__(1,2)));
#pragma __printf_args
extern __declspec(__nothrow) int printf(const char * __restrict , ...) __attribute__((__nonnull__(1)));
#pragma __printf_args
extern __declspec(__nothrow) int _printf(const char * __restrict , ...) __attribute__((__nonnull__(1)));
#pragma __printf_args
extern __declspec(__nothrow) int sprintf(char * __restrict , const char * __restrict , ...) __attribute__((__nonnull__(1,2)));
#pragma __printf_args
extern __declspec(__nothrow) int _sprintf(char * __restrict , const char * __restrict , ...) __attribute__((__nonnull__(1,2)));
#pragma __printf_args
extern __declspec(__nothrow) int snprintf(char * __restrict , size_t ,
const char * __restrict , ...) __attribute__((__nonnull__(3)));
#pragma __printf_args
extern __declspec(__nothrow) int _snprintf(char * __restrict , size_t ,
const char * __restrict , ...) __attribute__((__nonnull__(3)));
#pragma __scanf_args
extern __declspec(__nothrow) int fscanf(FILE * __restrict ,
const char * __restrict , ...) __attribute__((__nonnull__(1,2)));
#pragma __scanf_args
extern __declspec(__nothrow) int _fscanf(FILE * __restrict ,
const char * __restrict , ...) __attribute__((__nonnull__(1,2)));
#pragma __scanf_args
extern __declspec(__nothrow) int scanf(const char * __restrict , ...) __attribute__((__nonnull__(1)));
#pragma __scanf_args
extern __declspec(__nothrow) int _scanf(const char * __restrict , ...) __attribute__((__nonnull__(1)));
#pragma __scanf_args
extern __declspec(__nothrow) int sscanf(const char * __restrict ,
const char * __restrict , ...) __attribute__((__nonnull__(1,2)));
#pragma __scanf_args
extern __declspec(__nothrow) int _sscanf(const char * __restrict ,
const char * __restrict , ...) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int vfscanf(FILE * __restrict , const char * __restrict , __va_list) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int vscanf(const char * __restrict , __va_list) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int vsscanf(const char * __restrict , const char * __restrict , __va_list) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int _vfscanf(FILE * __restrict , const char * __restrict , __va_list) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int _vscanf(const char * __restrict , __va_list) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int _vsscanf(const char * __restrict , const char * __restrict , __va_list) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int vprintf(const char * __restrict , __va_list ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int _vprintf(const char * __restrict , __va_list ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int vfprintf(FILE * __restrict ,
const char * __restrict , __va_list ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int vsprintf(char * __restrict ,
const char * __restrict , __va_list ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int vsnprintf(char * __restrict , size_t ,
const char * __restrict , __va_list ) __attribute__((__nonnull__(3)));
extern __declspec(__nothrow) int _vsprintf(char * __restrict ,
const char * __restrict , __va_list ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int _vfprintf(FILE * __restrict ,
const char * __restrict , __va_list ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int _vsnprintf(char * __restrict , size_t ,
const char * __restrict , __va_list ) __attribute__((__nonnull__(3)));
extern __declspec(__nothrow) int fgetc(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) char *fgets(char * __restrict , int ,
FILE * __restrict ) __attribute__((__nonnull__(1,3)));
extern __declspec(__nothrow) int fputc(int , FILE * ) __attribute__((__nonnull__(2)));
extern __declspec(__nothrow) int fputs(const char * __restrict , FILE * __restrict ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int getc(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int (getchar)(void);
extern __declspec(__nothrow) char *gets(char * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int putc(int , FILE * ) __attribute__((__nonnull__(2)));
extern __declspec(__nothrow) int (putchar)(int );
extern __declspec(__nothrow) int puts(const char * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int ungetc(int , FILE * ) __attribute__((__nonnull__(2)));
extern __declspec(__nothrow) size_t fread(void * __restrict ,
size_t , size_t , FILE * __restrict ) __attribute__((__nonnull__(1,4)));
extern __declspec(__nothrow) size_t __fread_bytes_avail(void * __restrict ,
size_t , FILE * __restrict ) __attribute__((__nonnull__(1,3)));
extern __declspec(__nothrow) size_t fwrite(const void * __restrict ,
size_t , size_t , FILE * __restrict ) __attribute__((__nonnull__(1,4)));
extern __declspec(__nothrow) int fgetpos(FILE * __restrict , fpos_t * __restrict ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) int fseek(FILE * , long int , int ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int fsetpos(FILE * __restrict , const fpos_t * __restrict ) __attribute__((__nonnull__(1,2)));
extern __declspec(__nothrow) long int ftell(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) void rewind(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) void clearerr(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int feof(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) int ferror(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) void perror(const char * );
extern __declspec(__nothrow) int _fisatty(FILE * ) __attribute__((__nonnull__(1)));
extern __declspec(__nothrow) void __use_no_semihosting_swi(void);
extern __declspec(__nothrow) void __use_no_semihosting(void);
#line 944 "C:\\Keil\\ARM\\RV31\\INC\\stdio.h"
#line 7 "..\\Lib\\Src\\Driver\\DrvEBI.c"
#line 1 "..\\Lib\\CMSIS\\CM0\\DeviceSupport\\Nuvoton\\NUC1xx\\NUC1xx.h"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -