diff options
Diffstat (limited to 'lib/args.h')
-rw-r--r-- | lib/args.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/args.h b/lib/args.h deleted file mode 100644 index 0b89fca..0000000 --- a/lib/args.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef ARGS_H -#define ARGS_H - -#define UNUSED(x) (void)(x) -#define ARG_UNUSED 0 -#define ARG_USED 1 -#define ARG_IGNORE 2 -#define ARG_INVALID 3 - -void check_arg (char* arg); - -void global_help(void (*help)(void)); - -void parse_help (int argc, char** argv, void (*help)(void)); - -int parse_args (int argc, char** argv, void (*help)(void), int (*short_arg)(char, char*), int (*long_arg)(char*, char*)); - -#endif |