usrstattbl.c
来自「IXP425的BSP代码」· C语言 代码 · 共 31 行
C
31 行
/* usrStatTbl.c - error status symbol table initialization library *//* Copyright 1984-1998 Wind River Systems, Inc. *//*modification history--------------------01a,03jun98,ms written*//*DESCRIPTIONInitialize the error status table used by perror and printErrno.*//******************************************************************************** usrStatTblInit - initialize the error status table*/ void usrStatTblInit (void) { int ix; statSymTbl = symTblCreate (STAT_TBL_HASH_SIZE_LOG2, FALSE, memSysPartId); for (ix = 0; ix < statTblSize; ix ++) /* from built in table */ symTblAdd (statSymTbl, &(statTbl [ix])); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?