1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

Begin killing off sprintf

This commit is contained in:
2013-02-01 17:39:46 -05:00
parent 470ed86187
commit dd35878465
13 changed files with 57 additions and 100 deletions

View File

@ -187,12 +187,11 @@ bool pfConsoleEngine::PrintCmdHelp( char *name, void (*PrintFn)( const char *
}
/// That's it!
sprintf( string, "\nHelp for the command %s:", cmd->GetName() );
PrintFn( string );
sprintf( string, "\\i%s", cmd->GetHelp() );
PrintFn( string );
sprintf( string, "\\iUsage: %s", cmd->GetSignature() );
PrintFn( string );
plStringStream ss;
ss << "\nHelp for the command " << cmd->GetName() << ":\n";
ss << "\\i" << cmd->GetHelp() << "\n";
ss << "\\iUsage: " << cmd->GetSignature();
PrintFn(ss.GetString().c_str());
return true;
}
@ -204,7 +203,6 @@ const char *pfConsoleEngine::GetCmdSignature( char *name )
pfConsoleCmd *cmd;
pfConsoleCmdGroup *group, *subGrp;
const char *ptr;
static char string[ 512 ];
/// Scan for subgroups. This can be an empty loop
@ -236,7 +234,7 @@ const char *pfConsoleEngine::GetCmdSignature( char *name )
}
/// That's it!
return (char *)cmd->GetSignature();
return cmd->GetSignature();
}
//// Dummy Local Function ////////////////////////////////////////////////////