12 lines
		
	
	
		
			265 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			265 B
		
	
	
	
		
			C
		
	
	
	
	
	
|  | #include "Common.h"
 | ||
|  | #include <string.h>
 | ||
|  | #include <stdio.h>
 | ||
|  | 
 | ||
|  | void ResetCommandStruct(CommandStruct* command) | ||
|  | { | ||
|  |     for (int i = 0; i < command->argc; i++) | ||
|  |         memset(command->argv[i], 0, sizeof(command->argv[i])); | ||
|  |     command->argc = 0; | ||
|  |     return; | ||
|  | } |