===========================================================================
| 492 | |
| 493 | //=========================================================================== |
| 494 | void ConsoleUpdateCursor ( char ch ) |
| 495 | { |
| 496 | if (ch) |
| 497 | g_sConsoleCursor[0] = ch; |
| 498 | else |
| 499 | { |
| 500 | ch = (char) g_aConsoleInput[ g_nConsoleInputChars + g_nConsolePromptLen ]; |
| 501 | if (! ch) |
| 502 | { |
| 503 | ch = CHAR_SPACE; |
| 504 | } |
| 505 | g_sConsoleCursor[0] = ch; |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | |
| 510 | //=========================================================================== |
no outgoing calls
no test coverage detected