mirror of
https://github.com/mintycube/dwmblocks.git
synced 2024-10-22 12:05:47 +00:00
11 lines
191 B
C
11 lines
191 B
C
|
#pragma once
|
||
|
|
||
|
#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);
|