pish/include/Common.h

9 lines
153 B
C
Raw Normal View History

#ifndef COMMON_H
#define COMMON_H
typedef struct CommandStruct {
char* argv[100]; // Max 100 commands
int argc;
} CommandStruct;
#endif