dwmblocks

Kris's build of dwmblocks
git clone git clone https://git.krisyotam.com/krisyotam/dwmblocks.git
Log | Files | Refs | README | LICENSE

cli.h (205B)


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