blob: cb07b1aca939692ff76ef5400c04d92690417daf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef HONEY_OPTIONS_H
#define HONEY_OPTIONS_H
struct honey_options {
const char *script_file; // main entry point
};
enum outcomes_t {
CONTINUE_SUCCESS,
EXIT_SUCCESS,
EXIT_FAILURE,
};
enum outcomes_t parse_options(struct honey_options *options, int argc, char **argv);
#endif
|