You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
377 B
12 lines
377 B
#ifndef LIGHTNING_DAEMON_CONTROLLED_TIME_H
|
|
#define LIGHTNING_DAEMON_CONTROLLED_TIME_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <ccan/tal/tal.h>
|
|
#include <ccan/time/time.h>
|
|
|
|
struct timeabs controlled_time(void);
|
|
void controlled_time_register_opts(void);
|
|
char *controlled_time_arg(const tal_t *ctx);
|
|
|
|
#endif /* LIGHTNING_DAEMON_CONTROLLED_TIME_H */
|
|
|