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.
10 lines
303 B
10 lines
303 B
7 years ago
|
#ifndef LIGHTNING_COMMON_PEER_BILLBOARD_H
|
||
|
#define LIGHTNING_COMMON_PEER_BILLBOARD_H
|
||
|
#include "config.h"
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
/* Key information for RPC display: perm means it outlasts this daemon. */
|
||
|
void peer_billboard(bool perm, const char *fmt, ...);
|
||
|
|
||
|
#endif /* LIGHTNING_COMMON_PEER_BILLBOARD_H */
|