mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
1cb147c5b8
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
313 B
C
12 lines
313 B
C
#ifndef LIGHTNING_VERSION_H
|
|
#define LIGHTNING_VERSION_H
|
|
#include <ccan/opt/opt.h>
|
|
|
|
char *version_and_exit(const void *unused);
|
|
|
|
#define opt_register_version() \
|
|
opt_register_noarg("--version|-V", version_and_exit, NULL, \
|
|
"print version to standard output and exit")
|
|
|
|
#endif /* LIGHTNING_VERSION_H */
|