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.
9 lines
274 B
9 lines
274 B
#ifndef LIGHTNING_OPT_BITS_H
|
|
#define LIGHTNING_OPT_BITS_H
|
|
#include <ccan/opt/opt.h>
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
char *opt_set_bits(const char *arg, u64 *satoshi);
|
|
void opt_show_bits(char buf[OPT_SHOW_LEN], const u64 *bits);
|
|
|
|
#endif /* LIGHTNING_OPT_BITS_H */
|
|
|