~kris/suckless

dwmblocks

ref: 88db4b33911cdadc8ff09b3f9ac5e60e7660081e dwmblocks/include/cli.h -rw-r--r-- 205 bytes
88db4b33 — Kris Yotam Update FUNDING.yml to krisyotam as sole maintainer 7 months ago
                                                                                
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