mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
b7789bf065
Spread to individual Makefiles, and include headers. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
14 lines
372 B
C
14 lines
372 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.
|
|
* If we just created the dir, returns true.
|
|
*/
|
|
bool handle_opts(struct lightningd_state *dstate, int argc, char *argv[]);
|
|
|
|
#endif /* LIGHTNING_DAEMON_OPTIONS_H */
|