errno.h

来自「在程序设计部分主要讨论了在读写函数表达式时」· C头文件 代码 · 共 42 行

H
42
字号
#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 + =
减小字号Ctrl + -
显示快捷键?