9 lines
129 B
C
9 lines
129 B
C
|
#ifndef COMMON_H
|
||
|
#define COMMON_H
|
||
|
|
||
|
typedef struct CommandStruct {
|
||
|
char** argv;
|
||
|
int argc;
|
||
|
} CommandStruct;
|
||
|
|
||
|
#endif
|