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.
12 lines
371 B
12 lines
371 B
#ifndef LIGHTNING_LIGHTNINGD_MEMDUMP_H
|
|
#define LIGHTNING_LIGHTNINGD_MEMDUMP_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <stdbool.h>
|
|
|
|
struct command;
|
|
struct subd;
|
|
|
|
void opening_memleak_done(struct command *cmd, struct subd *leaker);
|
|
void peer_memleak_done(struct command *cmd, struct subd *leaker);
|
|
#endif /* LIGHTNING_LIGHTNINGD_MEMDUMP_H */
|
|
|