mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
12 lines
307 B
C
12 lines
307 B
C
|
#ifndef LIGHTNING_DAEMON_CONFIGDIR_H
|
||
|
#define LIGHTNING_DAEMON_CONFIGDIR_H
|
||
|
#include "config.h"
|
||
|
#include <ccan/tal/tal.h>
|
||
|
|
||
|
void configdir_register_opts(const tal_t *ctx,
|
||
|
char **config_dir, char **rpc_filename);
|
||
|
|
||
|
void opt_parse_from_config(const tal_t *ctx);
|
||
|
|
||
|
#endif /* LIGHTNING_DAEMON_CONFIGDIR_H */
|