"PWD" ===========================================================================
| 4400 | // "PWD" |
| 4401 | //=========================================================================== |
| 4402 | Update_t CmdConfigGetDebugDir (int nArgs) |
| 4403 | { |
| 4404 | if ( nArgs != 0 ) |
| 4405 | return Help_Arg_1( CMD_CONFIG_GET_DEBUG_DIR ); |
| 4406 | |
| 4407 | // TODO: debugger dir has no ` CONSOLE_COLOR_ESCAPE_CHAR ?!?! |
| 4408 | ConsoleBufferPushFormat( "Path: %s", g_sCurrentDir.c_str() ); |
| 4409 | |
| 4410 | return ConsoleUpdate(); |
| 4411 | } |
| 4412 | |
| 4413 | // Usage: |
| 4414 | // CD "<dir>" |
no test coverage detected