13 lines
116 B
C
13 lines
116 B
C
|
#ifndef CMDLINEOPTIONS_H
|
||
|
#define CMDLINEOPTIONS_H
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
struct option {
|
||
|
char* name;
|
||
|
|
||
|
} ;
|
||
|
|
||
|
#endif
|
||
|
|