2020-11-12 20:58:01 +00:00
|
|
|
#ifndef CORE_CLI_H
|
|
|
|
#define CORE_CLI_H
|
|
|
|
|
|
|
|
typedef struct cli
|
|
|
|
{
|
2020-11-18 23:59:26 +00:00
|
|
|
const char *config_file;
|
2020-11-12 20:58:01 +00:00
|
|
|
} cli_t;
|
|
|
|
|
|
|
|
void
|
2020-11-18 23:59:26 +00:00
|
|
|
cli_parse(int argc, const char **argv, cli_t *cli);
|
2020-11-12 20:58:01 +00:00
|
|
|
|
|
|
|
#endif /* CORE_CLI_H */
|