Loads the arguments with the command to get help on and call display help. ===========================================================================
| 65 | // Loads the arguments with the command to get help on and call display help. |
| 66 | //=========================================================================== |
| 67 | Update_t Help_Arg_1( int iCommandHelp ) |
| 68 | { |
| 69 | _Arg_1( iCommandHelp ); |
| 70 | |
| 71 | strncpy_s(g_aArgs[1].sArg, g_aCommands[iCommandHelp].m_sName, _TRUNCATE); // .3 Fixed: Help_Arg_1() now copies command name into arg.name |
| 72 | |
| 73 | return CmdHelpSpecific( 1 ); |
| 74 | } |
| 75 | |
| 76 | |
| 77 | //=========================================================================== |
no test coverage detected