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

📄 syserr.c

📁 DOS 源代码 系列之 command 源码
💻 C
字号:
/***
*syserr.c - clone of the system error list that appears in the
*           standard library.
*
*   Copyright (c) 1987-1990, Microsoft Corporation. All rights reserved.
*   Adapted by TerryF for IPG October 1991.
*
*Purpose:
*   Defines the System Error List, containing the full messages for
*   all errno values set by the library routines.
*   Defines sys_errlist.
*
*******************************************************************************/

/* standard lib uses the name sys_errlist */
char *sys_errorlist[] =
{
#include "syserr.msg"    /* TerryF -> IPG, localize syserr.msg */
};

/* standard lib uses the name sys_nerr */
int system_nerr = sizeof( sys_errorlist ) / sizeof( sys_errorlist[ 0 ] ) - 1;

/* The above array contains all the errors including unknown error # 37
   which is used if msg_num is unknown */

⌨️ 快捷键说明

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