============ Cmd_SetCommandCompletionFunc ============ */
| 634 | ============ |
| 635 | */ |
| 636 | void Cmd_SetCommandCompletionFunc( const char *command, completionFunc_t complete ) { |
| 637 | for ( cmd_function_t *cmd=cmd_functions; cmd; cmd=cmd->next ) { |
| 638 | if ( !Q_stricmp( command, cmd->name ) ) |
| 639 | cmd->complete = complete; |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | /* |
| 644 | ============ |
no test coverage detected