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.
11 lines
314 B
11 lines
314 B
9 years ago
|
#ifndef LIGHTNING_DAEMON_OPT_TIME_H
|
||
|
#define LIGHTNING_DAEMON_OPT_TIME_H
|
||
|
#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);
|
||
|
|
||
|
#endif /* LIGHTNING_DAEMON_OPT_TIME_H */
|