#ifndef ARGENT_OPTIONS_H #define ARGENT_OPTIONS_H struct argent_options { const char *conf_filename; const char *script_filename; int log_level; }; /* return 0 and fill `opts` on success; return nonzero on failure */ int parse_options(struct argent_options *opts, int argc, char **argv); #endif