mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 15:31:50 +00:00
21 lines
205 B
C
21 lines
205 B
C
|
|
#ifndef __flags_h__
|
|
#define __flags_h__
|
|
|
|
typedef struct Flags {
|
|
char *_c;
|
|
char *_t;
|
|
|
|
|
|
} Flags;
|
|
|
|
|
|
extern struct Flags flags;
|
|
|
|
int FlagsParse(int argc, char **argv);
|
|
|
|
void FlagsHelp(void);
|
|
|
|
#endif
|
|
|