dotfiles/.config/suckless/dwmblocks/include/cli.h

14 lines
224 B
C
Raw Normal View History

2024-04-23 04:34:15 +02:00
#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