blob: d45b6191f8a37f31ef11881a152dc17748bb3684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _TIL_ARGS_H
#define _TIL_ARGS_H
#include <stdio.h>
typedef struct til_args_t {
const char *module;
const char *video;
const char *seed;
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
|