#ifndef OPTIONS_H #define OPTIONS_H #include struct options { gboolean daemonize; }; void options_parse(int argc, char **argv, struct options *options); #endif