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

📄 errno.h

📁 在程序设计部分主要讨论了在读写函数表达式时
💻 H
字号:
#ifndef ERRNO_H
#define ERRNO_H

#ifndef	OK
	#define OK					0x00
#endif

#ifndef	MEMERY_OVERFLOW
	#define MEMERY_OVERFLOW 	0x01
#endif

#ifndef	ARGUMENT_FALSE
	#define ARGUMENT_FALSE		0x02
#endif

#ifndef	END_CHAR
	#define	END_CHAR			0x04
#endif

#ifndef UNUSUAL_CHARACTER
	#define UNUSUAL_CHARACTER	0x08
#endif


#ifndef CALL_FUN_WRONG
	#define CALL_FUN_WRONG		0x10
#endif

#ifndef TOO_LONG_VARIABLE
	#define TOO_LONG_VARIABLE	0x20
#endif

#ifndef OPND_OR_OPTR_NUM_WRONG
	#define OPND_OR_OPTR_NUM_WRONG	0x40
#endif

#ifndef PARSE_WRONG
	#define PARSE_WRONG			0x80
#endif


#endif /*ERRNO_H*/

⌨️ 快捷键说明

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