mpw-tools/SetFile-flags.h
Kelvin Sherlock 77d807fbf9 updates
- bump libtomcrypt
- SetFile -a "support"
- Date command.
2022-10-10 22:56:11 -04:00

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