blob: 2f93f62d2d9e32c633c3d91c46bf95e5b250f0f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CLI_H
#define CLI_H
#include <stdbool.h>
typedef struct {
bool is_debug_mode;
} cli_arguments;
cli_arguments cli_parse_arguments(const char* const argv[], const int argc);
#endif // CLI_H
|