summaryrefslogtreecommitdiff
path: root/options.h
blob: 51249c1e2a61168746159c2134a6d3cb58374fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef OPTIONS_H
#define OPTIONS_H

#include <glib.h>

struct options {
	gboolean daemonize;
};

void options_parse(int argc, char **argv, struct options *options);

#endif