mirror of
https://github.com/ksherlock/mpw-tools.git
synced 2024-10-31 12:04:29 +00:00
77d807fbf9
- bump libtomcrypt - SetFile -a "support" - Date command.
23 lines
233 B
C
23 lines
233 B
C
|
|
#ifndef __flags_h__
|
|
#define __flags_h__
|
|
|
|
typedef struct Flags {
|
|
char *_c;
|
|
char *_t;
|
|
char *_m;
|
|
char *_a;
|
|
|
|
|
|
} Flags;
|
|
|
|
|
|
extern struct Flags flags;
|
|
|
|
int FlagsParse(int argc, char **argv);
|
|
|
|
void FlagsHelp(void);
|
|
|
|
#endif
|
|
|