12 lines
181 B
C
12 lines
181 B
C
#ifndef CORE_CLI_H
|
|
#define CORE_CLI_H
|
|
|
|
typedef struct cli
|
|
{
|
|
const char *config_file;
|
|
} cli_t;
|
|
|
|
void
|
|
cli_parse(int argc, const char **argv, cli_t *cli);
|
|
|
|
#endif /* CORE_CLI_H */
|