2022-10-27 00:25:40 -05:00
|
|
|
#include "Common.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
void ResetCommandStruct(CommandStruct* command)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < command->argc; i++)
|
2022-10-27 03:47:19 -05:00
|
|
|
command->argv[i] = "";
|
2022-10-27 00:25:40 -05:00
|
|
|
command->argc = 0;
|
|
|
|
return;
|
|
|
|
}
|