blob: efe1e3c1fa2629d8e0622ad214977c651fcdc281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _TIL_ARGS_H
#define _TIL_ARGS_H
#include <stdio.h>
typedef struct til_args_t {
const char *module;
const char *video;
unsigned use_defaults:1;
unsigned help:1;
unsigned gogogo:1;
} til_args_t;
int til_args_parse(int argc, const char *argv[], til_args_t *res_args);
int til_args_pruned_parse(int argc, const char *argv[], til_args_t *res_args, int *res_argc, const char **res_argv[]);
int til_args_help(FILE *out);
#endif
|