blob: ce2de3733590f2a66f52289607b6bce8036b6fe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef OPTIONS_H
#define OPTIONS_H
#include <glib.h>
struct options {
gboolean daemonize;
gboolean kill;
};
void options_parse(int argc, char **argv, struct options *options);
#endif
|