14 lines
182 B
C
14 lines
182 B
C
|
#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 */
|