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

📄 stdio.h

📁 嵌入式点菜系嵌入式点菜系统源码供参考c51c51统源码供参考嵌入式点菜系统源码供参考c51c51c51c51
💻 H
字号:
/*			- STDIO.H -

   Subset of ANSI standard I/O function declarations.

   Version: 3.20 [ICLM]
	   
*/

#ifndef _STDIO_INCLUDED
#define _STDIO_INCLUDED

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

#ifndef EOF
#define	EOF	(-1)
#endif

#ifndef size_t
#if	sizeof((char*)0 - (char*)0) == sizeof(int)
#define	size_t	unsigned int
#else
#define	size_t 	unsigned long 
#endif
#endif

/* ===

#if __TID__ & 0x8000
#pragma function=intrinsic(0)
#endif

=== */

int 	puts(const char *);
int	putchar(int);
int	getchar(void);
int	sprintf(char *,const char *,...);
int	printf(const char *,...);
int	scanf(const char *,...);
int	sscanf(const char *, const char *,...);
char	*gets(char *);

#if __TID__ & 0x8000
#pragma function=default
#endif

#endif



⌨️ 快捷键说明

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