📄 errno.h
字号:
/*
* Version : @(#)errno.h 1.3
*/
/**************************************************************************
** *
** FILE : errno.h *
** *
** DESCRIPTION : Include file with prototypes and macros for errors of *
** some library routines *
** *
** COPYRIGHT : 1995 Tasking Software B.V., Amersfoort *
** *
**************************************************************************/
#ifndef _errno_h
#define _errno_h
extern int errno;
/* errors returned by printf/scanf */
#define ERR_FORMAT 1 /* illegal format string for printf/scanf */
#define ERR_NOFLOAT 2 /* No floating point in this version of */
/* printf/scanf */
#define ERR_NOLONG 3 /* No longs in this version of printf/scanf */
#define ERR_NOPOINT 4 /* No pointers allowed in printf/scanf */
/* Floating point errors */
#define ERANGE 5 /* Value out of range */
#define EDOM 6 /* Floating point domain error */
/* errors returned by file positioning routiness */
#define ERR_POS 7 /* Positioning failure */
#define _NERR 8 /* last error + 1 */
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -