pish/src/Common.c

12 lines
235 B
C
Raw Normal View History

#include "Common.h"
#include <string.h>
#include <stdio.h>
void ResetCommandStruct(CommandStruct* command)
{
for (int i = 0; i < command->argc; i++)
command->argv[i] = NULL;
command->argc = 0;
return;
}