mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
14 lines
224 B
C
14 lines
224 B
C
#ifndef CLI_H
|
|
#define CLI_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct {
|
|
bool is_debug_mode;
|
|
} cli_arguments;
|
|
|
|
int cli_init(cli_arguments* const args, const char* const argv[],
|
|
const int argc);
|
|
|
|
#endif // CLI_H
|