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-28 16:14:53 -05:00
|
|
|
command->argv[i] = NULL;
|
2022-10-27 00:25:40 -05:00
|
|
|
command->argc = 0;
|
|
|
|
return;
|
|
|
|
}
|