mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-09 23:27:17 +01:00
038ef0250a
For the moment, the new lightningd will share all this anyway. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
326 B
C
12 lines
326 B
C
#ifndef LIGHTNING_DAEMON_OPTIONS_H
|
|
#define LIGHTNING_DAEMON_OPTIONS_H
|
|
#include "config.h"
|
|
#include <ccan/tal/tal.h>
|
|
|
|
struct lightningd_state;
|
|
|
|
/* After this, we're in the .lightning dir, config file parsed. */
|
|
void handle_opts(struct lightningd_state *dstate, int argc, char *argv[]);
|
|
|
|
#endif /* LIGHTNING_DAEMON_OPTIONS_H */
|