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