core-legacy/include/cli.h

14 lines
182 B
C
Raw Normal View History

2020-11-12 20:58:01 +00:00
#ifndef CORE_CLI_H
#define CORE_CLI_H
typedef struct cli
{
char *config_path;
} cli_t;
void
cli_parse(int argc, const char **argv, config_t *config);
#endif /* CORE_CLI_H */