2017-08-28 18:06:01 +02:00
|
|
|
#ifndef LIGHTNING_LIGHTNINGD_OPT_TIME_H
|
|
|
|
#define LIGHTNING_LIGHTNINGD_OPT_TIME_H
|
2016-05-09 22:58:17 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include <ccan/opt/opt.h>
|
|
|
|
#include <ccan/time/time.h>
|
|
|
|
|
|
|
|
char *opt_set_time(const char *arg, struct timerel *t);
|
|
|
|
void opt_show_time(char buf[OPT_SHOW_LEN], const struct timerel *t);
|
|
|
|
|
2016-08-18 06:55:14 +02:00
|
|
|
char *opt_set_timeabs(const char *arg, struct timeabs *t);
|
|
|
|
void opt_show_timeabs(char buf[OPT_SHOW_LEN], const struct timeabs *t);
|
|
|
|
|
2017-08-28 18:06:01 +02:00
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_OPT_TIME_H */
|