#ifndef OPTIONS_H #define OPTIONS_H #include typedef enum { OPTIONS_FLAG_IS_CENTRAL_NODE, } options_flag_t; int options_parse(int argc, char **argv); bool options_is_flag_set(options_flag_t flag); #endif // OPTIONS_H