2022-10-25 01:09:00 -05:00
|
|
|
#ifndef COMMON_H
|
|
|
|
#define COMMON_H
|
|
|
|
|
|
|
|
typedef struct CommandStruct {
|
2022-10-25 01:30:43 -05:00
|
|
|
char* argv[100]; // Max 100 commands
|
2022-10-25 01:09:00 -05:00
|
|
|
int argc;
|
|
|
|
} CommandStruct;
|
|
|
|
|
2022-10-27 00:25:40 -05:00
|
|
|
void ResetCommandStruct(CommandStruct* command);
|
|
|
|
|
2022-10-25 01:09:00 -05:00
|
|
|
#endif
|