11 lines
205 B
C
Executable File
11 lines
205 B
C
Executable File
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
typedef struct CommandStruct {
|
|
char* argv[100]; // Max 100 commands
|
|
int argc;
|
|
} CommandStruct;
|
|
|
|
void ResetCommandStruct(CommandStruct* command);
|
|
|
|
#endif |