mirror of
https://github.com/ksherlock/mpw-tools.git
synced 2024-10-31 12:04:29 +00:00
21 lines
210 B
C
21 lines
210 B
C
|
|
#ifndef __flags_h__
|
|
#define __flags_h__
|
|
|
|
typedef struct Flags {
|
|
char *_a;
|
|
|
|
unsigned _p:1;
|
|
|
|
} Flags;
|
|
|
|
|
|
extern struct Flags flags;
|
|
|
|
int FlagsParse(int argc, char **argv);
|
|
|
|
void FlagsHelp(void);
|
|
|
|
#endif
|
|
|