MCPcopy Create free account
hub / github.com/JACoders/OpenJK / Cmd_CompleteArgument

Function Cmd_CompleteArgument

code/qcommon/cmd.cpp:688–693  ·  view source on GitHub ↗

============ Cmd_CompleteArgument ============ */

Source from the content-addressed store, hash-verified

686============
687*/
688void Cmd_CompleteArgument( const char *command, char *args, int argNum ) {
689 for ( cmd_function_t *cmd=cmd_functions; cmd; cmd=cmd->next ) {
690 if ( !Q_stricmp( command, cmd->name ) && cmd->complete )
691 cmd->complete( args, argNum );
692 }
693}
694
695/*
696============

Callers 1

Field_CompleteCommandFunction · 0.70

Calls 1

Q_stricmpFunction · 0.85

Tested by

no test coverage detected