core-lightning/daemon/options.h
Rusty Russell a72dd8d9de daemon/options: split option registration and parsing.
This allows us to add extra options before parsing.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2017-02-24 16:22:56 +10:30

17 lines
494 B
C

#ifndef LIGHTNING_DAEMON_OPTIONS_H
#define LIGHTNING_DAEMON_OPTIONS_H
#include "config.h"
#include <ccan/tal/tal.h>
struct lightningd_state;
/* You can register additional options *after* this if you want. */
void register_opts(struct lightningd_state *dstate);
/* After this, we're in the .lightning dir, config file parsed.
* If we just created the dir, returns true.
*/
bool handle_opts(struct lightningd_state *dstate, int argc, char *argv[]);
#endif /* LIGHTNING_DAEMON_OPTIONS_H */